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.

17 lines
383 B

  1. #!/bin/bash
  2. function export_variables {
  3. local util_dir=~/qmk_utils
  4. local download_dir=$util_dir/wsl_downloaded
  5. export DFU_PROGRAMMER=$download_dir/dfu-programmer/dfu-programmer.exe
  6. export DFU_UTIL=$download_dir/dfu-util-0.9-win64/dfu-util.exe
  7. export TEENSY_LOADER_CLI=$download_dir/teensy_loader_cli.exe
  8. export BATCHISP=batchisp.exe
  9. }
  10. export_variables