diff options
author | 2023-10-31 17:25:13 -0700 | |
---|---|---|
committer | 2023-10-31 17:25:13 -0700 | |
commit | 53d1acb0a5655deb69f54bd6f8222a6f4dd27633 (patch) | |
tree | 1b28f511d2e1723d4b279b3062ca7cc0c140f092 /scripts/all-dependencies.sh | |
parent | 23d2c4c8e49a1fdfdf976fb5647b3796450f66b5 (diff) | |
download | bun-53d1acb0a5655deb69f54bd6f8222a6f4dd27633.tar.gz bun-53d1acb0a5655deb69f54bd6f8222a6f4dd27633.tar.zst bun-53d1acb0a5655deb69f54bd6f8222a6f4dd27633.zip |
chore: build system improvements (#6811)
* build system improvements
* public the secret download link
* typo
* i think i fixed it
* fix ci
* un-bump the cmake version
Diffstat (limited to 'scripts/all-dependencies.sh')
-rwxr-xr-x | scripts/all-dependencies.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/all-dependencies.sh b/scripts/all-dependencies.sh index bd6a015a2..48c367b9b 100755 --- a/scripts/all-dependencies.sh +++ b/scripts/all-dependencies.sh @@ -30,7 +30,7 @@ dep() { break fi done - if [ "$HAS_ALL_DEPS" -eq 1 ]; then + if [ "$HAS_ALL_DEPS" == "1" ]; then printf "%s - already built\n" "$script" return fi @@ -56,8 +56,8 @@ dep boringssl libcrypto.a libssl.a libdecrepit.a dep cares libcares.a dep libarchive libarchive.a dep lolhtml liblolhtml.a -dep mimalloc-debug libmimalloc-debug.a -dep mimalloc libmimalloc.a +dep mimalloc-debug libmimalloc-debug.a libmimalloc-debug.o +dep mimalloc libmimalloc.a libmimalloc.o dep tinycc libtcc.a dep zlib libz.a dep zstd libzstd.a |