Browse Source

Uninstall repo with apt purge instead of dpkg

main
Gabriel Nagy 3 years ago
parent
commit
41579dd872
No known key found for this signature in database GPG Key ID: A2B2C9C0F6B672B3
  1. 2
      install.rb

2
install.rb

@ -65,7 +65,7 @@ if [[ $PT__noop != true ]]; then
rpm -e --allmatches ${collection}-release rpm -e --allmatches ${collection}-release
;; ;;
Debian|LinuxMint|Linuxmint|Ubuntu) Debian|LinuxMint|Linuxmint|Ubuntu)
dpkg -r ${collection}-release
apt-get purge ${collection}-release -y
;; ;;
esac esac
fi fi

Loading…
Cancel
Save