diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-04-18 18:02:31 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-04-18 18:02:31 +0200 |
commit | a8e41386af4bb4978d343587588f0ae1e5575142 (patch) | |
tree | 8225113272859d287848aceea8a19c9238d92d04 /bootstrap | |
parent | 844f47bce38cabcc9d8999134c7b26467ef80b79 (diff) |
Init submodules in bootstrap
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -1,2 +1,12 @@ #!/bin/sh + +if ! git --version >/dev/null; then + echo "git not installed" + exit 1 +fi + +echo "$0: Updating submodules" +echo | git submodule update --init + +echo "$0: Running autoreconf" autoreconf -if |