Skip to content

Commit

Permalink
Processing IDE: update processing4 repo owner name
Browse files Browse the repository at this point in the history
  • Loading branch information
theofficialgman committed Oct 11, 2023
1 parent 5b49729 commit 9812b86
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/updates/Processing IDE.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

webVer=$(get_release processing/processing4)
armhf_url="https://github.com/processing/processing4/releases/download/${webVer}/processing-$(echo ${webVer} | awk '{n=split($1,A,"-"); print A[n]}')-linux-arm32.tgz"
arm64_url="https://github.com/processing/processing4/releases/download/${webVer}/processing-$(echo ${webVer} | awk '{n=split($1,A,"-"); print A[n]}')-linux-arm64.tgz"
webVer=$(get_release benfry/processing4)
armhf_url="https://github.com/benfry/processing4/releases/download/${webVer}/processing-$(echo ${webVer} | awk '{n=split($1,A,"-"); print A[n]}')-linux-arm32.tgz"
arm64_url="https://github.com/benfry/processing4/releases/download/${webVer}/processing-$(echo ${webVer} | awk '{n=split($1,A,"-"); print A[n]}')-linux-arm64.tgz"

source $GITHUB_WORKSPACE/.github/workflows/update_github_script.sh
2 changes: 1 addition & 1 deletion apps/Processing IDE/install-32
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version=processing-1293-4.3

cd ~/.local/share/
rm -rf processing-*
wget "https://github.com/processing/processing4/releases/download/${version}/processing-$(echo ${version} | awk '{n=split($1,A,"-"); print A[n]}')-linux-arm32.tgz" || error "failed to download"
wget "https://github.com/benfry/processing4/releases/download/${version}/processing-$(echo ${version} | awk '{n=split($1,A,"-"); print A[n]}')-linux-arm32.tgz" || error "failed to download"
tar -xf processing-*.tgz || error "failed to extract"
rm processing-*.tgz
sudo ~/.local/share/processing*/install.sh
2 changes: 1 addition & 1 deletion apps/Processing IDE/install-64
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version=processing-1293-4.3

cd ~/.local/share/
rm -rf processing-*
wget "https://github.com/processing/processing4/releases/download/${version}/processing-$(echo ${version} | awk '{n=split($1,A,"-"); print A[n]}')-linux-arm64.tgz" || error "failed to download"
wget "https://github.com/benfry/processing4/releases/download/${version}/processing-$(echo ${version} | awk '{n=split($1,A,"-"); print A[n]}')-linux-arm64.tgz" || error "failed to download"
tar -xf processing-*.tgz || error "failed to extract"
rm processing-*.tgz
sudo ~/.local/share/processing*/install.sh

0 comments on commit 9812b86

Please sign in to comment.