Skip to content

Commit e99a313

Browse files
committed
build-scx-scheds: fix pipx installation as non-root
1 parent 4dd2998 commit e99a313

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build-scx-scheds/install-dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ sudo -E apt-get -y update
1212
# Download and install pipx
1313
sudo -E apt-get --no-install-recommends -y install wget python3 python3-pip python3-venv
1414
wget "https://github.com/pypa/pipx/releases/download/${PIPX_VERSION}/pipx.pyz"
15-
mv pipx.pyz /usr/bin/pipx && chmod +x /usr/bin/pipx
15+
chmod +x pipx.pyz && sudo mv pipx.pyz /usr/bin/pipx
1616

1717
# pipx ensurepath is not doing what we need
1818
# install pipx apps to /usr/local/bin manually

0 commit comments

Comments
 (0)