diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-03-31 23:48:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-01 08:48:44 +0200 |
commit | a31e601550cc6f9fd9e09b385bfbd869a408cd4b (patch) | |
tree | 3d7eb5d5fae38fe6139bc35a07cda4d9f85c722b /build_all.sh | |
parent | 6f53579a8ceb7576fb1b31f72c9d584916b4b5d9 (diff) | |
download | Nim-a31e601550cc6f9fd9e09b385bfbd869a408cd4b.tar.gz |
misc fixes: build_all.sh, changelog (#17601)
* fix a bug in build_all.sh: $@ => "$@" * remove getSocket from changelog following #17587 * remove unused import
Diffstat (limited to 'build_all.sh')
-rwxr-xr-x | build_all.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build_all.sh b/build_all.sh index e66980e56..c3c6e68b7 100755 --- a/build_all.sh +++ b/build_all.sh @@ -42,7 +42,7 @@ build_nim_csources(){ echo_run cp bin/nim $nim_csources } -[ -f $nim_csources ] || echo_run build_nim_csources $@ +[ -f $nim_csources ] || echo_run build_nim_csources "$@" # Note: if fails, may need to `cd csources && git pull` echo_run bin/nim c --skipUserCfg --skipParentCfg koch |