diff options
author | Starfall <us@starfall.systems> | 2022-11-10 08:51:38 -0600 |
---|---|---|
committer | Starfall <us@starfall.systems> | 2022-11-10 08:51:38 -0600 |
commit | cddf9f22da2bf85f25c8bad68ab58c0ee7f17f34 (patch) | |
tree | c6c59cdf2dd9ea3fb60923b10d6a012b4e3bcbdc | |
parent | 67d1a0476d77e2ed0ca15dd2981c54c2b90b0742 (diff) |
up timeout in custom build script to account for typing password
-rwxr-xr-x | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh index 7742f3789..ea2b14d05 100755 --- a/build.sh +++ b/build.sh @@ -6,7 +6,7 @@ echo "Building commit $commit" yarn install if ! systemctl is-active docker &>/dev/null; then - timeout 5s systemctl start docker + timeout 15s systemctl start docker if [ $? -eq 124 ]; then echo 'Docker start may be hanging... consider manual intervention:' echo ' rm -rf /var/run/docker' |