Skip to content

Commit

Permalink
fetch_release.sh: create script.
Browse files Browse the repository at this point in the history
This script further automates the fetching of release firmware-images.

Signed-off-by: Martin Hübner <martin.hubner@web.de>
  • Loading branch information
Akira25 committed Nov 30, 2021
1 parent e7fe664 commit f63a943
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions fetch_release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/sh

VERSION="$1"

if [ "$VERSION" = "" ]; then
printf " Usage:\n\tfetch_release.sh [VERSION]\n\nExample:\n\tfetch_release.sh 1.2.1\n\n"
exit 1
fi

./get_profiles_local.py "https://firmware.berlin.freifunk.net/stable/$VERSION/" /usr/local/src/www/htdocs/buildbot/stable/$VERSION/

0 comments on commit f63a943

Please sign in to comment.