diff --git a/helloworld-downloader.ps1 b/helloworld-downloader.ps1 index ccf9c3d..5032a70 100644 --- a/helloworld-downloader.ps1 +++ b/helloworld-downloader.ps1 @@ -19,7 +19,7 @@ Param( $i = 1 $baseDir = ($PSScriptRoot) $issues = Get-Content "$baseDir\regular-issues.txt" -First 1 -$baseUrl = "https://helloworld.raspberrypi.org/issues/" +$baseUrl = "https://www.raspberrypi.org/hello-world/issues/" $web = New-Object system.net.webclient $errorCount = 0 diff --git a/helloworld-downloader.sh b/helloworld-downloader.sh index 5fc1280..b234744 100755 --- a/helloworld-downloader.sh +++ b/helloworld-downloader.sh @@ -30,6 +30,6 @@ recentIssue=$(cat "$file"); # workaround for a known limitation in bash 3.x: http://lists.gnu.org/archive/html/bug-bash/2006-01/msg00018.html # stackoverflow: https://stackoverflow.com/questions/32596123/why-source-command-doesnt-work-with-process-substitution-in-bash-3-2/32596626#32596626 # shellcheck disable=SC1091 -source /dev/stdin <<<"$(curl -s https://raw.githubusercontent.com/joergi/downloader/0.4.6/linux_mac/downloader.sh)" "$downloadUrl" "$OUTDIR" "$recentIssue" HelloWorld_ "$@" +source /dev/stdin <<<"$(curl -s https://raw.githubusercontent.com/joergi/downloader/0.5.0/linux_mac/downloader.sh)" "$downloadUrl" "$OUTDIR" "$recentIssue" HelloWorld_ "$@" exit 0