basic records support
This commit is contained in:
parent
19011e67da
commit
ff11d7e0ed
11 changed files with 522 additions and 138 deletions
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
echo '=== Building WASM lib ==='
|
||||
cd wasm || exit 1
|
||||
if ! GOOS=js GOARCH=wasm go build .; then
|
||||
if ! GOOS=js GOARCH=wasm go build . "$@"; then
|
||||
echo "=x= Had error building WASM lib =x="
|
||||
exit 1
|
||||
else
|
||||
|
|
@ -12,7 +12,7 @@ cd ..
|
|||
|
||||
echo '=== Building CLI ==='
|
||||
cd cli || exit 1
|
||||
if ! go build .; then
|
||||
if ! go build . "$@"; then
|
||||
echo "=x= Had error building CLI =x="
|
||||
exit 1
|
||||
else
|
||||
|
|
@ -22,7 +22,7 @@ cd ..
|
|||
|
||||
echo "=== Running go core tests ==="
|
||||
cd core || exit 1
|
||||
if ! go test .; then
|
||||
if ! go test . "$@"; then
|
||||
echo "=x= Core testing failed =x= "
|
||||
exit 1
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue