Merge pull request #325 from Brikaa/vlang

pkg(vlang-0.1.13): Fix command line arguments bug
This commit is contained in:
Thomas Hobson 2021-09-15 23:07:18 +12:00 committed by GitHub
commit 036b90d9ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -6,8 +6,9 @@ export TMPDIR="$PWD"
# Put instructions to run the runtime
rename 's/$/\.v/' "$@" # Add .v extension
filename=$1
rename 's/$/\.v/' $filename # Add .v extension
filename=$1.v
shift
v run $filename "$@"
v run $filename.v "$@"