From f5bd7493a85c12fa495e646d017b4b932efa9cec Mon Sep 17 00:00:00 2001 From: Sadek Baroudi Date: Wed, 2 Nov 2022 11:37:02 -0700 Subject: [PATCH] small issue with interactive mode for convert-to parameter --- bin/fp_build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/fp_build.sh b/bin/fp_build.sh index a2124e713d..df94ebdf17 100755 --- a/bin/fp_build.sh +++ b/bin/fp_build.sh @@ -104,6 +104,9 @@ build_keyboard_user_input() { param_name=$(cat "${build_json}" | jq -r ".[${param_iter}].name") build_string+=" ${param_name}=${user_choice}" + elif [[ "${param_type}" == "convert-to" ]]; then + # Do nothing, we can skip this for interactive mode + param_name=$(cat "${build_json}" | jq -r ".[${param_iter}].name") else echo "invalid type in json file: ${param_type}" exit