Skip to content

Commit

Permalink
Renoise (Demo): fix auto-updater and install script for 3.4.4+
Browse files Browse the repository at this point in the history
  • Loading branch information
theofficialgman committed May 28, 2024
1 parent eb423c7 commit 3320175
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/updates/Renoise (Demo).sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

webVer="$(curl -s https://files.renoise.com/demo/ | grep "armhf" | sed -e 's/<a href="//' -e 's/".*//' -e 's/Renoise_//' -e 's/_Demo_Linux_armhf.tar.gz//')"
armhf_url="https://renoise.com/demo/Renoise_${webVer}_Demo_Linux_armhf.tar.gz"
arm64_url="https://renoise.com/demo/Renoise_${webVer}_Demo_Linux_arm64.tar.gz"
armhf_url="https://files.renoise.com/demo/Renoise_${webVer}_Demo_Linux_armhf.tar.gz"
arm64_url="https://files.renoise.com/demo/Renoise_${webVer}_Demo_Linux_arm64.tar.gz"

source ${GITHUB_WORKSPACE}/.github/workflows/update_github_script.sh
4 changes: 2 additions & 2 deletions apps/Renoise (Demo)/install-32
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#!/bin/bash

version=3_4_3
version=3_4_4

cd /tmp
wget -O renoise-armhf.tar.gz "https://files.renoise.com/demo/Renoise_${version}_Demo_Linux_armhf.tar.gz" || exit 1
status "Extracting Renoise..."
tar -xf renoise-armhf.tar.gz || error "Failed to extract Renoise!"
cd Renoise_${version}_Demo_Linux_armhf || error "Failed to cd into 'Renoise_${version}_Demo_Linux_armhf'!"
cd Renoise_${version//_/.}_Demo_Linux_armhf || error "Failed to cd into 'Renoise_${version//_/.}_Demo_Linux_armhf'!"
status_green "Done!"
status "Installing Renoise..."
chmod +x install.sh || error "Failed to set 'install.sh' as execuable!"
Expand Down
4 changes: 2 additions & 2 deletions apps/Renoise (Demo)/install-64
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#!/bin/bash

version=3_4_3
version=3_4_4

cd /tmp
wget -O renoise-arm64.tar.gz "https://files.renoise.com/demo/Renoise_${version}_Demo_Linux_arm64.tar.gz" || exit 1
status "Extracting Renoise..."
tar -xf renoise-arm64.tar.gz || error "Failed to extract Renoise!"
cd Renoise_${version}_Demo_Linux_arm64 || error "Failed to cd into 'Renoise_${version}_Demo_Linux_arm64'!"
cd Renoise_${version//_/.}_Demo_Linux_arm64 || error "Failed to cd into 'Renoise_${version//_/.}_Demo_Linux_arm64'!"
status_green "Done!"
status "Installing Renoise..."
chmod +x install.sh || error "Failed to set 'install.sh' as execuable!"
Expand Down

0 comments on commit 3320175

Please sign in to comment.