diff options
author | Florian Dold <florian@dold.me> | 2024-06-10 17:02:51 +0200 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2024-06-10 17:02:51 +0200 |
commit | 10bc0e6ae1e19e98a8c45e75f0517666eee62e3a (patch) | |
tree | b671ff797a58c69f83935b4bfe270386244ee0db /bootstrap | |
parent | b1d84df5b1d98b140ed3dd2b51e566f6964130ad (diff) |
lockfile for merchant SPA from prebuilt
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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: |