diff options
author | Karel Kočí <cynerd@email.cz> | 2018-09-07 17:18:29 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2018-09-07 17:18:29 +0200 |
commit | aa508028036ea01683b07cb9fc2812dc35bc9b65 (patch) | |
tree | 8334be3d7e2817281b857e8f450291a3504856fa /templates | |
parent | 901d7020373e43d441fea5ab8f14492026b66671 (diff) | |
download | laminar-cnf-aa508028036ea01683b07cb9fc2812dc35bc9b65.tar.gz laminar-cnf-aa508028036ea01683b07cb9fc2812dc35bc9b65.tar.bz2 laminar-cnf-aa508028036ea01683b07cb9fc2812dc35bc9b65.zip |
Add fake laminar execution possibility
Diffstat (limited to 'templates')
-rwxr-xr-x | templates/turris3x.run | 3 | ||||
-rwxr-xr-x | templates/turris4x.run | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/templates/turris3x.run b/templates/turris3x.run index 1327e24..49640cc 100755 --- a/templates/turris3x.run +++ b/templates/turris3x.run @@ -1,7 +1,6 @@ #!/bin/sh # vim: ft=sh -set -e -. common +. "$(dirname "$(readlink -f "$0")")/../job.common" echo_stage "Get packages" git_clone "git@cynerd.cz:openwrt-personal-pkgs" pkgs turris3x diff --git a/templates/turris4x.run b/templates/turris4x.run index a5405b5..5c39008 100755 --- a/templates/turris4x.run +++ b/templates/turris4x.run @@ -1,7 +1,6 @@ #!/bin/sh # vim: ft=sh -set -e -. common +. "$(dirname "$(readlink -f "$0")")/../job.common" if [ "$V" -ge 1 ]; then MAKE="make -j1 IS_TTY=1 BUILD_LOG=1 V=99" |