diff options
author | Karel Kočí <karel.koci@nic.cz> | 2018-08-28 11:03:12 +0200 |
---|---|---|
committer | Karel Kočí <karel.koci@nic.cz> | 2018-08-28 11:03:12 +0200 |
commit | e0d47569fa05a84feb6401b52c91d61e814003dd (patch) | |
tree | 3c0401aa019b4e71f2b9d43c86f537c50e1f9e56 /templates | |
parent | 4fb1e1ccb7825c4ae42d98c882978281868974d2 (diff) | |
download | laminar-cnf-e0d47569fa05a84feb6401b52c91d61e814003dd.tar.gz laminar-cnf-e0d47569fa05a84feb6401b52c91d61e814003dd.tar.bz2 laminar-cnf-e0d47569fa05a84feb6401b52c91d61e814003dd.zip |
Implement some lock cleaning
I hope that this will work.
Diffstat (limited to 'templates')
-rwxr-xr-x | templates/turris4x.run | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/turris4x.run b/templates/turris4x.run index bbc8551..dc461b6 100755 --- a/templates/turris4x.run +++ b/templates/turris4x.run @@ -9,6 +9,7 @@ echo_stage "Get packages" git_fetch "https://git.cynerd.cz/openwrt-personal-pkgs" pkgs curl "https://repo.turris.cz/$BOARD-$BRANCH/git-hash" > git-hash +laminar_self_lock sdk if [ -f "$WORKSPACE/openwrt-git-hash" ] && cmp -s git-hash "$WORKSPACE/openwrt-git-hash"; then echo_info "Using previous version of SDK" cp -a "$WORKSPACE/sdk" openwrt @@ -36,13 +37,12 @@ else echo_stage "Store SDK in workspace" cd .. - laminar_self_lock sdk rm -rf "$WORKSPACE/sdk" cp -a openwrt "$WORKSPACE/sdk" - laminar_self_unlock sdk cd openwrt fi +laminar_self_unlock sdk echo_stage "Add our repository as feed" echo "src-git personal file://$WORKSPACE/pkgs" >> feeds.conf |