From e64794f37d9299260a952371de2fe36b7b2b9c98 Mon Sep 17 00:00:00 2001 From: Jesse Portnoy Date: Mon, 10 Jul 2023 16:51:18 +0100 Subject: [PATCH] - `prebuild.sh`: - Since `git submodule update --init` is needed for this to work, call it - Run `bash` with -e so it exists on error --- prebuild.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/prebuild.sh b/prebuild.sh index 461aef6e..fa31dc9e 100755 --- a/prebuild.sh +++ b/prebuild.sh @@ -1,7 +1,9 @@ -#!/bin/bash -x +#!/bin/bash -xe # Remember to preinstall linux libraries: # (ibus, tar, zip, unzip, buid-prerequisits, xorg-dev) +git submodule update --init + if [ ! -f "./vcpkg/vcpkg" ]; then cd vcpkg ./bootstrap-vcpkg.sh -disableMetrics