
This should make it so that if any of the commands in the script fail, the whole script fails.
10 lines
102 B
Bash
Executable File
10 lines
102 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
aclocal -I m4 --install
|
|
autoreconf -fvi
|
|
|
|
git submodule init
|
|
git submodule update
|