Skip to content

Commit

Permalink
&& not || for vic-cloud local file detection
Browse files Browse the repository at this point in the history
  • Loading branch information
kercre123 committed Mar 26, 2024
1 parent 71e0944 commit 671f940
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chipper/pkg/wirepod/setup/ssh.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ func SetupBotViaSSH(ip string, key []byte) error {
return doErr(err, "copying server-config.json")
}
scpClient.Session.Close()
if runtime.GOOS != "android" || !vars.Packaged {
if runtime.GOOS != "android" && !vars.Packaged {
cloud, err := os.Open("../vector-cloud/build/vic-cloud")
if err != nil {
return doErr(err, "transferring new vic-cloud")
Expand Down

0 comments on commit 671f940

Please sign in to comment.