mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-23 21:46:27 +02:00
* pkg(vlang-0.1.13): Add vlang 0.1.13 * Export environment variables: VMODULES and TMPDIR environment vars to the current working dir in the run script. Co-authored-by: Shivansh-007 <Shivansh-007@users.noreply.github.com>
8 lines
No EOL
145 B
Bash
8 lines
No EOL
145 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Export environment variables
|
|
export VMODULES="$PWD"
|
|
export TMPDIR="$PWD"
|
|
|
|
# Put instructions to run the runtime
|
|
v run "$@" |