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 c1a13b3 commit 926678cCopy full SHA for 926678c
tools/run_nix_shell.sh
@@ -113,7 +113,7 @@ for ((i=0; i < ${#INPUTS[@]}; i+=2)); do
113
value="${INPUTS[i+1]}"
114
115
if [[ -n "$value" ]]; then
116
- input="INPUT_${name^^}" # prefix with INPUT_ and uppercase
+ input="INPUT_$(echo "${name}" | tr '[:lower:]' '[:upper:]')" # prefix with INPUT_ and uppercase
117
input="${input// /_}" # replace spaces with underscores
118
variables+=( "${input}=${value}" )
119
fi
0 commit comments