You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
411 B

6 years ago
  1. #!/bin/bash
  2. function export_variables {
  3. local util_dir=~/qmk_utils
  4. export PATH=$PATH:$util_dir
  5. export PATH=$PATH:$util_dir/dfu-programmer
  6. export PATH=$PATH:$util_dir/dfu-util-0.9-win64
  7. export PATH=$PATH:$util_dir/flip/bin
  8. export PATH=$PATH:$util_dir/avr8-gnu-toolchain/bin
  9. export PATH=$PATH:$util_dir/gcc-arm-none-eabi/bin
  10. export PATH=$PATH:/mingw64/bin
  11. }
  12. export_variables