diff options
| author | Joel Stålnacke <joel@saker.fi> | 2024-10-06 11:35:54 +0300 |
|---|---|---|
| committer | Joel Stålnacke <joel@saker.fi> | 2024-10-06 11:35:54 +0300 |
| commit | 21001a44f1781423ae04f35ee41e042ae6f01355 (patch) | |
| tree | 9ecbd9addbc05afcee29b8cec7432cd9d65881d2 /lib/build.sh | |
| parent | 11e09f477480531487cd12b5c107ac1d8352a7a5 (diff) | |
Update build.sh
Output Done only if succesful
Diffstat (limited to 'lib/build.sh')
| -rwxr-xr-x | lib/build.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/build.sh b/lib/build.sh index f506120..ccdc117 100755 --- a/lib/build.sh +++ b/lib/build.sh @@ -48,5 +48,4 @@ case "$runtime" in esac echo Building for runtime "$runtime ..." -mkdir -p "$output/runtimes/$runtime/native" && $CC $CFLAGS $SOURCES -shared $LDFLAGS -o "$output/runtimes/$runtime/native/$sofile" -echo Done +mkdir -p "$output/runtimes/$runtime/native" && $CC $CFLAGS $SOURCES -shared $LDFLAGS -o "$output/runtimes/$runtime/native/$sofile" && echo Done |
