From 6992a3d1ac8aaba5da7108749416b340a2684c71 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 13 Sep 2020 19:21:15 +0200 Subject: [PATCH] scripts: fix mixed indentation --- scripts/copy_output.lua | 14 +++++++------- scripts/update.sh | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/scripts/copy_output.lua b/scripts/copy_output.lua index b5c6f1b2..1af2f8f7 100755 --- a/scripts/copy_output.lua +++ b/scripts/copy_output.lua @@ -69,16 +69,16 @@ end -- copy kernel image with debug symbols local kernel_debug_glob = string.format('%s/gluon-\0-%s-kernel-debug.tar.zst', - env.GLUON_DEBUGDIR, - target) + env.GLUON_DEBUGDIR, + target) lib.exec {'rm', '-f', kernel_debug_glob} local kernel_debug_source = string.format('openwrt/bin/targets/%s/kernel-debug.tar.zst', - bindir) + bindir) local kernel_debug_dest = string.format('%s/gluon-%s-%s-%s-kernel-debug.tar.zst', - env.GLUON_DEBUGDIR, - lib.site_code, - env.GLUON_RELEASE, - target) + env.GLUON_DEBUGDIR, + lib.site_code, + env.GLUON_RELEASE, + target) lib.exec {'cp', kernel_debug_source, kernel_debug_dest} diff --git a/scripts/update.sh b/scripts/update.sh index 0d33a8cc..a9f28b05 100755 --- a/scripts/update.sh +++ b/scripts/update.sh @@ -21,8 +21,8 @@ for module in $GLUON_MODULES; do if ! git branch -f base "$commit" 2>/dev/null; then git fetch "$repo" "$branch" git branch -f base "$commit" || { - echo "unable to find commit \"$commit\" on branch \"$branch\" in repo \"$repo\"." >&2 - exit 1 + echo "unable to find commit \"$commit\" on branch \"$branch\" in repo \"$repo\"." >&2 + exit 1 } fi done