We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22ecac6 commit 53231ceCopy full SHA for 53231ce
action.yml
@@ -30,8 +30,8 @@ runs:
30
julia_cmd=( julia --color=yes --code-coverage --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()' )
31
32
# Add the prefix in front of the command if there is one
33
- prefix="${{ inputs.prefix }}"
34
- [[ -n $prefix ]] && julia_cmd=( "$prefix" "${julia_cmd[@]}" )
+ prefix=( ${{ inputs.prefix }} )
+ [[ -n ${prefix[*]} ]] && julia_cmd=( "${prefix[@]}" "${julia_cmd[@]}" )
35
36
# Run the Julia command
37
"${julia_cmd[@]}"
0 commit comments