Export environment variables: VMODULES and TMPDIR environment vars to the current working dir in the run script.

This commit is contained in:
Shivansh-007 2021-03-20 06:13:25 +05:30
parent aaf417c701
commit 21c4d7c310

View file

@ -1,4 +1,8 @@
#!/usr/bin/env bash
# Export environment variables
export VMODULES="$PWD"
export TMPDIR="$PWD"
# Put instructions to run the runtime
v run "$@"