pkg(scala-3.0.0): Quick fix for filename issue (#228)

This commit is contained in:
Dan Vargas 2021-04-24 20:45:43 -05:00 committed by GitHub
parent ccc1e4c08b
commit 5f267a98b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Put instructions to run the runtime # Put instructions to run the runtime
scala "$@" mv $1 $1.scala
filename=$1.scala
shift
scala $filename "$@"