Browse Source

Fix sed -i usage on macOS, accept 'Y'.

xmkb
Pete Johanson 4 years ago
parent
commit
47dbba2184
  1. 8
      docs/static/setup.sh

8
docs/static/setup.sh vendored

@ -90,7 +90,7 @@ fi @@ -90,7 +90,7 @@ fi
echo ""
read -p "Continue? [Yn]: " do_it
if [ -n "$do_it" ] && [ "$do_it" != "y" ]; then
if [ -n "$do_it" ] && [ "$do_it" != "y" ] && [ "$do_it" != "Y" ]; then
echo "Aborting..."
exit
fi
@ -108,7 +108,7 @@ fi @@ -108,7 +108,7 @@ fi
popd
sed -i \
sed -i'.orig' \
-e "s/BOARD_NAME/$board/" \
-e "s/SHIELD_NAME/$shield/" \
-e "s/KEYBOARD_TITLE/$shield_title/" \
@ -116,9 +116,11 @@ sed -i \ @@ -116,9 +116,11 @@ sed -i \
if [ "$board" == "proton_c" ]; then
# Proton-C board still fa
sed -i -e "s/uf2/hex/g" .github/workflows/build.yml
sed -i'.orig' -e "s/uf2/hex/g" .github/workflows/build.yml
fi
rm .github/workflows/*.yml.orig
rm -rf .git
git init .
git add .

Loading…
Cancel
Save