Browse Source

scripts/mkits.sh: fix improper string and array concatenation

Found with shellcheck.

Signed-off-by: Rosen Penev <[email protected]>
Rosen Penev 5 years ago
parent
commit
7aefc85cab
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/mkits.sh

+ 1 - 1
scripts/mkits.sh

@@ -43,7 +43,7 @@ do
 		k ) KERNEL=$OPTARG;;
 		o ) OUTPUT=$OPTARG;;
 		v ) VERSION=$OPTARG;;
-		* ) echo "Invalid option passed to '$0' (options:$@)"
+		* ) echo "Invalid option passed to '$0' (options:$*)"
 		usage;;
 	esac
 done