From 67e6b010f297fbaaea733a2a43598f9b05dfeec0 Mon Sep 17 00:00:00 2001 From: Ricardo Pardini Date: Fri, 27 Jan 2023 13:45:51 +0100 Subject: [PATCH] armbian-next: cli-build: don't show two `BOARD=` repeat option --- lib/functions/cli/cli-build.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/functions/cli/cli-build.sh b/lib/functions/cli/cli-build.sh index 4a5a158b58..ee9d5db9ac 100644 --- a/lib/functions/cli/cli-build.sh +++ b/lib/functions/cli/cli-build.sh @@ -28,7 +28,6 @@ function produce_repeat_args_array() { # @TODO: missing the config file name, if any. # @TODO: missing the original cli command, if different from build/docker [[ -n ${BOARD} ]] && repeat_args+=("BOARD=${BOARD}") - [[ -n ${BOARD} ]] && repeat_args+=("BOARD=${BOARD}") [[ -n ${BRANCH} ]] && repeat_args+=("BRANCH=${BRANCH}") [[ -n ${RELEASE} ]] && repeat_args+=("RELEASE=${RELEASE}") [[ -n ${BUILD_MINIMAL} ]] && repeat_args+=("BUILD_MINIMAL=${BUILD_MINIMAL}")