diff options
author | Miran <narimiran@disroot.org> | 2020-11-10 21:53:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-10 21:53:25 +0100 |
commit | bbe49a14ae827b6474d692042406716a3b3dd71f (patch) | |
tree | 87408943da9ab5e805a17532bdcdb6f033df5f68 /build_all.sh | |
parent | bc3c0487d3059900864d6e8074cf83555a5c446d (diff) | |
download | Nim-bbe49a14ae827b6474d692042406716a3b3dd71f.tar.gz |
Correct all eggs (#15906)
* "eg" is a misspelled "egg", "e.g." is "exempli gratia" * Also, "ie" is "i.e.".
Diffstat (limited to 'build_all.sh')
-rwxr-xr-x | build_all.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build_all.sh b/build_all.sh index d3bba2211..e66980e56 100755 --- a/build_all.sh +++ b/build_all.sh @@ -1,7 +1,7 @@ #! /bin/sh # build development version of the compiler; can be rerun safely. -# arguments can be passed, eg `--os freebsd` +# arguments can be passed, e.g. `--os freebsd` set -u # error on undefined variables set -e # exit on first error @@ -24,7 +24,7 @@ build_nim_csources(){ # avoid changing dir in case of failure ( if [ $# -ne 0 ]; then - # some args were passed (eg: `--cpu i386`), need to call build.sh + # some args were passed (e.g.: `--cpu i386`), need to call build.sh build_nim_csources_via_script "$@" else # no args, use multiple Make jobs (5X faster on 16 cores: 10s instead of 50s) |