diff options
author | Charadon <dev@iotib.net> | 2022-07-16 17:57:53 -0400 |
---|---|---|
committer | Charadon <dev@iotib.net> | 2022-07-16 17:57:53 -0400 |
commit | 0143ed2ff68a130e8e895f0d491ab271c2afdf5d (patch) | |
tree | 907090cece8e99fc2adc66257832fe4ab7d6206f /build.sh | |
parent | c9a15281b7328742a59c46eb3171754ce9e30bff (diff) | |
download | dscip-0143ed2ff68a130e8e895f0d491ab271c2afdf5d.tar.gz |
Added chroot feature, allowed all variables used in dscip to be used in the build scripts (such as CURRENT_COMMIT) and added some examples to the build scripts.
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/build.sh b/build.sh index 044a189..be7672e 100755 --- a/build.sh +++ b/build.sh @@ -1,4 +1,11 @@ #!/bin/sh -# Insert build commands in here. # -gmake -j4 +set -e + +# Insert build commands in here. # +# Below are example commands. # +./configure +make +make DESTDIR=app install + +exit 0 |