Skip to content

Commit 93b2f80

Browse files
committedFeb 2, 2024
Filter out spaces in the board options
1 parent d935149 commit 93b2f80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎rebuild

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ init_var() {
177177
case "${1}" in
178178
-b | --Board)
179179
if [[ -n "${2}" ]]; then
180-
build_board="${2}"
180+
build_board="${2// /}"
181181
shift
182182
else
183183
error_msg "Invalid -b parameter [ ${2} ]!"

0 commit comments

Comments
 (0)
Please sign in to comment.