diff --git a/net/gce.sh b/net/gce.sh index 9582537b3..db6520e40 100755 --- a/net/gce.sh +++ b/net/gce.sh @@ -1,8 +1,8 @@ #!/bin/bash -e here=$(dirname "$0") -# shellcheck source=scripts/gcloud.sh -source "$here"/../scripts/gcloud.sh +# shellcheck source=net/scripts/gcloud.sh +source "$here"/scripts/gcloud.sh # shellcheck source=net/common.sh source "$here"/common.sh diff --git a/net/remote/remote-client.sh b/net/remote/remote-client.sh index 63c8aa12d..f1f1ae9e5 100755 --- a/net/remote/remote-client.sh +++ b/net/remote/remote-client.sh @@ -25,7 +25,7 @@ if [[ $threadCount -gt 4 ]]; then threadCount=4 fi -scripts/install-earlyoom.sh +net/scripts/install-earlyoom.sh case $deployMethod in snap) diff --git a/net/remote/remote-node.sh b/net/remote/remote-node.sh index 0d7567ebe..7a0a4d9f3 100755 --- a/net/remote/remote-node.sh +++ b/net/remote/remote-node.sh @@ -29,7 +29,7 @@ EOF source net/common.sh loadConfigFile -scripts/install-earlyoom.sh +time net/scripts/install-earlyoom.sh if [[ $publicNetwork = true ]]; then setupArgs="-p" diff --git a/scripts/gcloud.sh b/net/scripts/gcloud.sh similarity index 100% rename from scripts/gcloud.sh rename to net/scripts/gcloud.sh diff --git a/scripts/install-earlyoom.sh b/net/scripts/install-earlyoom.sh similarity index 100% rename from scripts/install-earlyoom.sh rename to net/scripts/install-earlyoom.sh