fix: add leading slash on default remote shell

This commit is contained in:
Sylvia Crowe 2024-12-20 12:50:51 -08:00
parent c142d6ff3a
commit 4fa4fe6e63

View File

@ -58,5 +58,5 @@ func shellCmdInner() string {
}
}
// none found
return "bin/bash\n"
return "/bin/bash\n"
}