diff options
author | Karel Kočí <cynerd@email.cz> | 2018-08-26 15:14:34 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2018-08-26 15:14:34 +0200 |
commit | 32eaff138cc2f26ef4fe4cb63599763b27c5c488 (patch) | |
tree | a7e68067459d2fb2309df159497e9948907d002a /templates | |
parent | 7b1aef260402f538e3c60c83bfb79f9f41fcbf7a (diff) | |
download | laminar-cnf-32eaff138cc2f26ef4fe4cb63599763b27c5c488.tar.gz laminar-cnf-32eaff138cc2f26ef4fe4cb63599763b27c5c488.tar.bz2 laminar-cnf-32eaff138cc2f26ef4fe4cb63599763b27c5c488.zip |
turris3x: small fixes
Diffstat (limited to 'templates')
-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" |