misc fixes: build_all.sh, changelog (#17601)

* fix a bug in build_all.sh: $@ => "$@"

* remove getSocket from changelog following #17587

* remove unused import
This commit is contained in:
Timothee Cour
2021-03-31 23:48:44 -07:00
committed by GitHub
parent 6f53579a8c
commit a31e601550
3 changed files with 3 additions and 3 deletions

View File

@@ -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

View File

@@ -73,7 +73,7 @@
- Added `asyncdispatch.activeDescriptors` that returns the number of currently
active async event handles/file descriptors.
- Added to `asynchttpserver` `getPort` and `getSocket`.
- Added `getPort` to `asynchttpserver`.
- `--gc:orc` is now 10% faster than previously for common workloads. If
you have trouble with its changed behavior, compile with `-d:nimOldOrc`.

View File

@@ -10,7 +10,7 @@
## This module contains support code for new-styled error
## handling via an `nkError` node kind.
import ast, renderer, options, lineinfos, strutils, types
import ast, renderer, options, strutils, types
type
ErrorKind* = enum ## expand as you need.