mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-08 20:27:27 +01:00
5 lines
187 B
Bash
5 lines
187 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Mount the PWD and the /work mount dir to enable access in try_run commands
|
||
|
exec ${WASMTIME_HOME}/bin/wasmtime -S threads=y run --dir=. --dir=$PWD --dir=/work/ "$@"
|