scripts: fix mixed indentation
This commit is contained in:
parent
6ed243fb2b
commit
6992a3d1ac
@ -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}
|
||||
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user