basic records support

This commit is contained in:
Neemek 2026-08-17 17:08:24 +02:00 committed by Neemek
parent 19011e67da
commit ff11d7e0ed
Signed by: neemek
GPG key ID: 84FFE4D7D40AB25E
11 changed files with 522 additions and 138 deletions

View file

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