activate_wsl.sh 383 B

1234567891011121314151617
  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