Skip to content

Commit

Permalink
fix(makefile): adjust volume mount path for sanity
Browse files Browse the repository at this point in the history
Tweaked the volume mount path because even directories get lost sometimes. Don't worry, they're safe at "/build" now!
  • Loading branch information
madflojo committed Oct 13, 2024
1 parent 65c8426 commit 31e86ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testdata/base/sql/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

build:
## Run TinyGo build via Docker because its easier
docker run --rm -v `pwd`/:/tarmacbuild -w /tarmacbuild tinygo/tinygo:0.32.0 tinygo build -o /tarmacbuild/tarmac.wasm -target wasi /tarmacbuild/main.go
docker run --rm -v `pwd`/:/build -u root -w /build tinygo/tinygo:0.32.0 tinygo build -o /build/tarmac.wasm -target wasi /build/main.go

docker-compose:
docker compose up
Expand Down

0 comments on commit 31e86ea

Please sign in to comment.