summaryrefslogtreecommitdiffstats
path: root/util/msys2_install.sh
diff options
context:
space:
mode:
authorFred Sundvik <fsundvik@gmail.com>2017-07-11 16:55:03 +0200
committerFred Sundvik <fsundvik@gmail.com>2017-07-11 16:55:03 +0200
commit5c3fd671989cfed9563db4d38deb776d72d513de (patch)
treee03b0edaf4873a32f79c21d0bd04f05ccf0aa987 /util/msys2_install.sh
parent0d9e7f635e8f05356101d72725342fc272b7b71b (diff)
downloadqmk_firmware-5c3fd671989cfed9563db4d38deb776d72d513de.tar.gz
qmk_firmware-5c3fd671989cfed9563db4d38deb776d72d513de.tar.xz
Add tools to the path
Diffstat (limited to 'util/msys2_install.sh')
-rw-r--r--util/msys2_install.sh24
1 files changed, 23 insertions, 1 deletions
diff --git a/util/msys2_install.sh b/util/msys2_install.sh
index 866cc25a7..85f4e5f6c 100644
--- a/util/msys2_install.sh
+++ b/util/msys2_install.sh
@@ -88,8 +88,30 @@ else
fi
popd
+cp -f "$dir/activate_msys2.sh" "$download_dir/"
+
+if grep "^source ~/qmk_utils/activate_msys2.sh$" ~/.bashrc
+then
+ echo
+ echo "The line source ~/qmk_utils/activate_msys2.sh is already added to your /.bashrc"
+ echo "Not adding it twice!"
+else
+ while true; do
+ echo
+ echo "Do you want to add 'source ~/qmk_utils/activate_msys2.sh' to the end of your"
+ echo ".bashrc file? Without this make won't find the needed utils, so if you don't"
+ echo "want to do it automatically, then you have to do it manually later."
+ read -p "(Y/N)? " res
+ case $res in
+ [Yy]* ) echo "source ~/qmk_utils/activate_msys2.sh" >> ~/.bashrc; break;;
+ [Nn]* ) break;;
+ * ) echo "Invalid answer";;
+ esac
+ done
+fi
+
echo
echo "******************************************************************************"
echo "Installation completed!"
-echo "You need to open a new batch command prompt for all the utils to work properly"
+echo "Please close this Window and restart MSYS2 MinGW"
echo "******************************************************************************" \ No newline at end of file