about summary refs log tree commit diff
path: root/build.sh
diff options
context:
space:
mode:
authorStarfall <us@starfall.systems>2022-11-10 08:51:38 -0600
committerStarfall <us@starfall.systems>2022-11-10 08:51:38 -0600
commitcddf9f22da2bf85f25c8bad68ab58c0ee7f17f34 (patch)
treec6c59cdf2dd9ea3fb60923b10d6a012b4e3bcbdc /build.sh
parent67d1a0476d77e2ed0ca15dd2981c54c2b90b0742 (diff)
up timeout in custom build script to account for typing password
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh2
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'