dev-run-debug.sh 206 B

1234567
  1. #!/bin/bash
  2. if [[ -f ~/target/debug/exa ]]; then
  3. ~/target/debug/exa "$@"
  4. else
  5. echo -e "Debug exa binary does not exist!"
  6. echo -e "Run \033[32;1mb\033[0m or \033[32;1mbuild-exa\033[0m to create it"
  7. fi