Skip to content
This repository has been archived by the owner on Oct 30, 2019. It is now read-only.

Changed method used by hassbian-scripts install-script. #61

Merged
merged 2 commits into from
Oct 29, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package/opt/hassbian/suites/upgrade_hassbian-script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function hassbian-script-show-long-info {
}

function hassbian-script-show-copyright-info {
echo "Original concept by Ludeeus <https://github.im/Ludeeus>"
echo "Original concept by Ludeeus <https://github.com/ludeeus>"
}

function hassbian-script-upgrade-package {
Expand All @@ -25,7 +25,7 @@ curl https://api.github.com/repos/home-assistant/hassbian-scripts/releases/lates
HASSBIAN_PACKAGE=$(ls | grep 'hassbian*')

echo "Installing newest release"
sudo dpkg -i $HASSBIAN_PACKAGE
sudo apt install -y /tmp/$HASSBIAN_PACKAGE

echo "Cleanup"
rm $HASSBIAN_PACKAGE
Expand Down