add file trace to parser, refactor, fix inner type
This commit is contained in:
parent
bcf0978b68
commit
c8660a6471
10 changed files with 131 additions and 51 deletions
12
test_all.sh
12
test_all.sh
|
|
@ -1,9 +1,19 @@
|
|||
#!/bin/bash
|
||||
|
||||
echo '=== Building WASM lib ==='
|
||||
cd wasm || exit 1
|
||||
if ! GOOS=js GOARCH=wasm go build .; then
|
||||
echo "=x= Had error building WASM lib =x="
|
||||
exit 1
|
||||
else
|
||||
echo "=+= Successfully built WASM lib =+="
|
||||
fi
|
||||
cd ..
|
||||
|
||||
echo '=== Building CLI ==='
|
||||
cd cli || exit 1
|
||||
if ! go build .; then
|
||||
echo "=== Had error building CLI ==="
|
||||
echo "=x= Had error building CLI =x="
|
||||
exit 1
|
||||
else
|
||||
echo "=+= Successfully built CLI =+="
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue