Skip to content

Commit

Permalink
fix(quickget): resolve shellcheck SC2004 notice
Browse files Browse the repository at this point in the history
  • Loading branch information
flexiondotorg committed May 7, 2024
1 parent 66abc6e commit 5fc79f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quickget
Original file line number Diff line number Diff line change
Expand Up @@ -2018,7 +2018,7 @@ function generate_id() {
local macRecoveryID=""
local TYPE="${1}"
local valid_chars=("0" "1" "2" "3" "4" "5" "6" "7" "8" "9" "A" "B" "C" "D" "E" "F")
for ((i=0; i<$TYPE; i++)); do
for ((i=0; i<TYPE; i++)); do
macRecoveryID+="${valid_chars[$((RANDOM % 16))]}"
done
echo "${macRecoveryID}"
Expand Down

0 comments on commit 5fc79f7

Please sign in to comment.