Commit 58cf3bb 1 parent 6b1e7f5 commit 58cf3bb Copy full SHA for 58cf3bb
File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,6 @@ $packageManagementList = @(
59
59
(Get-YarnVersion ),
60
60
(Get-PipVersion ),
61
61
(Get-Pip3Version ),
62
- (Get-PipxVersion ),
63
62
(Get-VcpkgVersion )
64
63
)
65
64
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ toolset="$INSTALLER_SCRIPT_FOLDER/toolset.json"
11
11
pipx_packages=$( jq -r " .pipx[] .package" $toolset )
12
12
13
13
for package in $pipx_packages ; do
14
- python_version=$( jq -r " .pipx[] | select(.package == $package ) .python" $toolset )
14
+ python_version=$( jq -r " .pipx[] | select(.package == \" $package \" ) .python" $toolset )
15
15
if [ " $python_version " != " null" ]; then
16
16
python_path=" /opt/hostedtoolcache/Python/$python_version */x64/bin/python$python_version "
17
17
echo " Install $package into python $python_path "
@@ -22,7 +22,7 @@ for package in $pipx_packages; do
22
22
fi
23
23
24
24
# Run tests to determine that the software installed as expected
25
- cmd=$( jq -r " .pipx[] | select(.package == $package ) .cmd" $toolset )
25
+ cmd=$( jq -r " .pipx[] | select(.package == \" $package \" ) .cmd" $toolset )
26
26
if ! command -v $cmd ; then
27
27
echo " $package was not installed"
28
28
exit 1
You can’t perform that action at this time.
0 commit comments