]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Add tools to the path
authorFred Sundvik <fsundvik@gmail.com>
Tue, 11 Jul 2017 14:55:03 +0000 (17:55 +0300)
committerFred Sundvik <fsundvik@gmail.com>
Tue, 11 Jul 2017 14:55:03 +0000 (17:55 +0300)
util/activate_msys2.sh [new file with mode: 0644]
util/msys2_install.sh

diff --git a/util/activate_msys2.sh b/util/activate_msys2.sh
new file mode 100644 (file)
index 0000000..bb04853
--- /dev/null
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+function export_variables {
+    local util_dir=~/qmk_utils
+    export PATH=$PATH:$util_dir/dfu-programmer
+    export PATH=$PATH:$util_dir/dfu-util-0.9-win64
+    export PATH=$PATH:$util_dir/flip/bin
+    export PATH=$PATH:$util_dir/avr8-gnu-toolchain/bin
+    export PATH=$PATH:$util_dir/gcc-arm-none-eabi/bin
+}
+
+export_variables
+
+
+
+
index 866cc25a7c7060140c1e1966c7ee7bf97b43bf7a..85f4e5f6cec6873b5f7772dc4c55eb0ae1bac0ee 100644 (file)
@@ -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