Add openSUSE support in download.sh (#3306)

This commit is contained in:
Travis Plunk 2017-03-10 16:54:47 -08:00 committed by Dongbo Wang
parent 2409a2c7c8
commit 63ba98fd25

View file

@ -44,6 +44,14 @@ case "$OSTYPE" in
exit 2
esac
;;
opensuse)
if ! hash curl 2>/dev/null; then
echo "curl not found, installing..."
sudo zypper install -y curl
fi
package=powershell-6.0.0_alpha.17-1.suse.13.2.x86_64.rpm
;;
*)
echo "$NAME is not supported!" >&2
exit 2
@ -83,6 +91,12 @@ case "$OSTYPE" in
# Resolve dependencies
sudo apt-get install -f
;;
opensuse)
# Install the Microsoft public key so that zypper trusts the package
sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
# zypper automatically resolves dependencies for local packages
sudo zypper --non-interactive install "./$package" &> /dev/null
;;
*)
esac
;;