diff options
author | Pete Johanson <peter@peterjohanson.com> | 2021-01-08 11:11:20 -0500 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2021-01-08 11:11:20 -0500 |
commit | 964b613e982a707e00c8cb5cb07d8dfcfab25419 (patch) | |
tree | 7283f57d546cb405c8fd704a74981e72e13569a8 /docs/static/setup.sh | |
parent | f0312092c7f3b9b24124b615bf438ad52aa4643f (diff) |
fix(setup): Fix typo for split variable assignment
Diffstat (limited to 'docs/static/setup.sh')
-rw-r--r-- | docs/static/setup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/static/setup.sh b/docs/static/setup.sh index 5384277..8ac3943 100644 --- a/docs/static/setup.sh +++ b/docs/static/setup.sh @@ -120,7 +120,7 @@ select opt in "${options[@]}" "Quit"; do 18 ) shield_title="Tidbit" shield="tidbit"; split="n" break;; 19 ) shield_title="Eek!" shield="eek"; split="n" break;; 20 ) shield_title="BFO-9000" shield="bfo9000"; split="y"; break;; - 21 ) shield_title="Helix" shield="helix"; split"y"; break;; + 21 ) shield_title="Helix" shield="helix"; split="y"; break;; # Add link to docs on adding your own custom shield in your ZMK config! # $(( ${#options[@]}+1 )) ) echo "Other!"; break;; |