Skip to content

Commit

Permalink
fix(makefile): update volume path for clarity
Browse files Browse the repository at this point in the history
Refactored Docker volume path in the Makefile to distinguish it
from the rest. Because even build directories deserve a touch of
individuality!
  • Loading branch information
madflojo committed Oct 13, 2024
1 parent 36bd71b commit 65c8426
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`/:/build -w /build tinygo/tinygo:0.32.0 tinygo build -o /build/tarmac.wasm -target wasi /build/main.go
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-compose:
docker compose up
Expand Down

0 comments on commit 65c8426

Please sign in to comment.