aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2024-06-10 17:02:51 +0200
committerFlorian Dold <florian@dold.me>2024-06-10 17:02:51 +0200
commit10bc0e6ae1e19e98a8c45e75f0517666eee62e3a (patch)
treeb671ff797a58c69f83935b4bfe270386244ee0db /bootstrap
parentb1d84df5b1d98b140ed3dd2b51e566f6964130ad (diff)
lockfile for merchant SPA from prebuilt
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap7
1 files changed, 7 insertions, 0 deletions
diff --git a/bootstrap b/bootstrap
index 18789981..3321d906 100755
--- a/bootstrap
+++ b/bootstrap
@@ -7,9 +7,16 @@ if ! git --version >/dev/null; then
exit 1
fi
+if ! python3 --version >/dev/null; then
+ echo "python3 not installed"
+ exit 1
+fi
+
echo "$0: Updating submodules"
echo | git submodule update --init --force --remote
+./contrib/check-prebuilt
+
# This is more portable than `which' but comes with
# the caveat of not(?) properly working on busybox's ash: