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 c80d307 commit bbfeb63Copy full SHA for bbfeb63
action.yml
@@ -66,8 +66,8 @@ runs:
66
julia_cmd=( julia --color=yes --depwarn=${{ inputs.depwarn }} --inline=${{ inputs.inline }} --project=${{ inputs.project }} -e 'include(joinpath(ENV["GITHUB_ACTION_PATH"], "test_harness.jl"))' )
67
68
# Add the prefix in front of the command if there is one
69
- prefix="${{ inputs.prefix }}"
70
- [[ -n $prefix ]] && julia_cmd=( "$prefix" "${julia_cmd[@]}" )
+ prefix=( ${{ inputs.prefix }} )
+ [[ -n ${prefix[*]} ]] && julia_cmd=( "${prefix[@]}" "${julia_cmd[@]}" )
71
72
# Run the Julia command
73
"${julia_cmd[@]}"
0 commit comments