diff options
-rwxr-xr-x | templates/turris3x.run | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/turris3x.run b/templates/turris3x.run index bc8b56a..0bcf7b4 100755 --- a/templates/turris3x.run +++ b/templates/turris3x.run @@ -1,4 +1,4 @@ -# vim: ft=sh +#!/bin/sh set -e . utils @@ -7,7 +7,7 @@ git_fetch "$GIT_REPO" pkgs turris3x # TODO download only once a day echo_strage "Download SDK" -wget "$SDK_URI" -O sdk.tar.bz2 +curl "$SDK_URI" > sdk.tar.bz2 mv sdk.tar.bz2 "$WORKSPACE/sdk.tar.bz2" echo_stage "Export SDK" |