From 21c4d7c31073c47333c6d333fee57dcf17882d63 Mon Sep 17 00:00:00 2001 From: Shivansh-007 Date: Sat, 20 Mar 2021 06:13:25 +0530 Subject: [PATCH] Export environment variables: VMODULES and TMPDIR environment vars to the current working dir in the run script. --- packages/vlang/0.1.13/run | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/vlang/0.1.13/run b/packages/vlang/0.1.13/run index 9183942..d8fa7b2 100644 --- a/packages/vlang/0.1.13/run +++ b/packages/vlang/0.1.13/run @@ -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 "$@" \ No newline at end of file