Skip to content

Commit 3024e8e

Browse files
committed
Fix jq parsing
1 parent 84b3837 commit 3024e8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

images/linux/scripts/installers/pipx-packages.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
export PATH="$PATH:/opt/pipx_bin"
99

1010
toolset="$INSTALLER_SCRIPT_FOLDER/toolset.json"
11-
pipx_packages=$(jq ".pipx[] .package" $toolset)
11+
pipx_packages=$(jq -r ".pipx[] .package" $toolset)
1212

1313
for package in $pipx_packages; do
1414
python_version=$(jq -r ".pipx[] | select(.package == $package) .python" $toolset)

0 commit comments

Comments
 (0)