summaryrefslogtreecommitdiff
path: root/docs/static
diff options
context:
space:
mode:
authorPete Johanson <peter@peterjohanson.com>2020-08-10 22:47:18 -0400
committerPete Johanson <peter@peterjohanson.com>2020-08-10 22:47:18 -0400
commitb0c648ad57d138c462fac538c7ea25f88b03e443 (patch)
tree3971a46bf817fd0ca34419ad7908ad8220c4dcb6 /docs/static
parentbc6b11eb02352900a62434ab60415f972222a1a2 (diff)
Revert usage of `read -i` for macOS compat.
Diffstat (limited to 'docs/static')
-rw-r--r--docs/static/setup.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/static/setup.sh b/docs/static/setup.sh
index 4208943..ce2fe25 100644
--- a/docs/static/setup.sh
+++ b/docs/static/setup.sh
@@ -64,10 +64,10 @@ if [ -z "$copy_keymap" ] || [ "$copy_keymap" == "Y" ] || [ "$copy_keymap" == "y"
read -e -p "GitHub Username (leave empty to skip GitHub repo creation): " github_user
if [ -n "$github_user" ]; then
- read -e -i "zmk-config" -p "GitHub Repo Name: " repo_name
+ read -p "GitHub Repo Name [zmk-config]: " repo_name
if [ -z "$repo_name" ]; then repo_name="zmk-config"; fi
- read -e -i "https://github.com/${github_user}/${repo_name}.git" -p "GitHub Repo: " github_repo
+ read -p "GitHub Repo [https://github.com/${github_user}/${repo_name}.git]: " github_repo
if [ -z "$github_repo" ]; then github_repo="https://github.com/${github_user}/${repo_name}.git"; fi
else