Skip to content

Commit

Permalink
removing sudo
Browse files Browse the repository at this point in the history
  • Loading branch information
jokkon committed Sep 18, 2024
1 parent 8bbb870 commit a7ac944
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/linux-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
export PYVER_MINOR=${PYVER%.*}
echo "PYVER_MINOR: $PYVER_MINOR"
apt-get update
sudo apt-get install -qq curl software-properties-common libnotify-dev libayatana-appindicator3-dev patchelf
sudo add-apt-repository -y ppa:git-core/ppa
sudo add-apt-repository -y ppa:deadsnakes/ppa
sudo apt-get install -qq git python$PYVER_MINOR-dev python$PYVER_MINOR-venv ython$PYVER_MINOR-distutils
apt-get install -qq curl software-properties-common libnotify-dev libayatana-appindicator3-dev patchelf
add-apt-repository -y ppa:git-core/ppa
add-apt-repository -y ppa:deadsnakes/ppa
apt-get install -qq git python$PYVER_MINOR-dev python$PYVER_MINOR-venv ython$PYVER_MINOR-distutils
git config --global --add safe.directory "$GITHUB_WORKSPACE"
sudo ln -s `which python$PYVER_MINOR` /usr/local/bin/python
sudo ln -s `which python$PYVER_MINOR` /usr/local/bin/python3
ln -s `which python$PYVER_MINOR` /usr/local/bin/python
ln -s `which python$PYVER_MINOR` /usr/local/bin/python3
PYVER_TEMP=`/usr/local/bin/python --version`
export PYVERINST=${PYVER_TEMP#* }
echo "PYVERINST=$PYVERINST" >> $GITHUB_ENV
Expand Down

0 comments on commit a7ac944

Please sign in to comment.