diff --git a/bin/install_hyperion.sh b/bin/install_hyperion.sh index a0d6bd5c..ca3196f6 100755 --- a/bin/install_hyperion.sh +++ b/bin/install_hyperion.sh @@ -17,27 +17,27 @@ fi /sbin/initctl stop hyperion # Get the Hyperion executable -wget -N github.com/tvdzwan/hyperion/raw/master/deploy/hyperiond -P /usr/bin/ +wget -N https://raw.github.com/tvdzwan/hyperion/master/deploy/hyperiond -P /usr/bin/ chmod +x /usr/bin/hyperiond # Get the Hyperion command line utility -wget -N github.com/tvdzwan/hyperion/raw/master/deploy/hyperion-remote -P /usr/bin/ +wget -N https://raw.github.com/tvdzwan/hyperion/master/deploy/hyperion-remote -P /usr/bin/ chmod +x /usr/bin/hyperion-remote # Copy the gpio changer (gpio->spi) to the /usr/bin if [ $IS_XBIAN -eq 0 ]; then - wget -N github.com/tvdzwan/hyperion/raw/master/deploy/gpio2spi -P /usr/bin/ + wget -N https://raw.github.com/tvdzwan/hyperion/master/deploy/gpio2spi -P /usr/bin/ chmod +x /usr/bin/gpio2spi fi # Copy the hyperion configuration file to /etc -wget -N github.com/tvdzwan/hyperion/raw/master/config/hyperion.config.json -P /etc/ +wget -N https://raw.github.com/tvdzwan/hyperion/master/config/hyperion.config.json -P /etc/ # Copy the service control configuration to /etc/int if [ $IS_XBIAN -eq 0 ]; then - wget -N github.com/tvdzwan/hyperion/raw/master/deploy/hyperion.conf -P /etc/init/ + wget -N https://raw.github.com/tvdzwan/hyperion/master/deploy/hyperion.conf -P /etc/init/ else - wget -N github.com/tvdzwan/hyperion/raw/master/deploy/hyperion.xbian.conf -O /etc/init/hyperion.conf + wget -N https://raw.github.com/tvdzwan/hyperion/master/deploy/hyperion.xbian.conf -O /etc/init/hyperion.conf fi # Start the hyperion daemon diff --git a/bin/update_hyperion.sh b/bin/update_hyperion.sh index 8e1996b5..0ed3d3fa 100755 --- a/bin/update_hyperion.sh +++ b/bin/update_hyperion.sh @@ -17,24 +17,24 @@ fi /sbin/initctl stop hyperion # Get the Hyperion executable -wget -N github.com/tvdzwan/hyperion/raw/master/deploy/hyperiond -P /usr/bin/ +wget -N https://raw.github.com/tvdzwan/hyperion/master/deploy/hyperiond -P /usr/bin/ chmod +x /usr/bin/hyperiond # Get the Hyperion command line utility -wget -N github.com/tvdzwan/hyperion/raw/master/deploy/hyperion-remote -P /usr/bin/ +wget -N https://raw.github.com/tvdzwan/hyperion/master/deploy/hyperion-remote -P /usr/bin/ chmod +x /usr/bin/hyperion-remote # Copy the gpio changer (gpio->spi) to the /usr/bin if [ $IS_XBIAN -eq 0 ]; then - wget -N github.com/tvdzwan/hyperion/raw/master/deploy/gpio2spi -P /usr/bin/ + wget -N https://raw.github.com/tvdzwan/hyperion/master/deploy/gpio2spi -P /usr/bin/ chmod +x /usr/bin/gpio2spi fi # Copy the service control configuration to /etc/int if [ $IS_XBIAN -eq 0 ]; then - wget -N github.com/tvdzwan/hyperion/raw/master/deploy/hyperion.conf -P /etc/init/ + wget -N https://raw.github.com/tvdzwan/hyperion/master/deploy/hyperion.conf -P /etc/init/ else - wget -N github.com/tvdzwan/hyperion/raw/master/deploy/hyperion.xbian.conf -P /etc/init/ -O hyperion.conf + wget -N https://raw.github.com/tvdzwan/hyperion/master/deploy/hyperion.xbian.conf -P /etc/init/ -O hyperion.conf fi # Start the hyperion daemon