Skip to content
Snippets Groups Projects
Verified Commit 5d6df2b2 authored by Karel Koci's avatar Karel Koci :metal:
Browse files

helpers/generate_medkit: fix invalid variable names

There variables renamed in commit
3b85c6e8 but that was not reflected in
code in this case.
parent 89c8fb8c
2 merge requests!377Turris OS 5.2 (HBK),!264helpers/generate_medkit: fix invalid variable names
......@@ -137,9 +137,9 @@ while [ $# -gt 0 ]; do
shift
done
[ -n "$BOARD" ] || die "You have to specify target Turris router."
[ -n "$BOOTSTRAP_BOARD" ] || die "You have to specify target Turris router."
[ -n "$OUTPUT" ] || \
OUTPUT="$BOARD-medkit$default_output_ext.tar.gz"
OUTPUT="$BOOTSTRAP_BOARD-medkit$default_output_ext.tar.gz"
OUTPUT="$(readlink -f "$OUTPUT")"
updater_ng_repodetect "$BRANCH" "$BOOTSTRAP_BOARD"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment