mirror of
https://github.com/Llewellynvdm/exa.git
synced 2024-11-11 15:20:58 +00:00
8 lines
206 B
Bash
8 lines
206 B
Bash
|
#!/bin/bash
|
||
|
if [[ -f ~/target/debug/exa ]]; then
|
||
|
~/target/debug/exa "$@"
|
||
|
else
|
||
|
echo -e "Debug exa binary does not exist!"
|
||
|
echo -e "Run \033[32;1mb\033[0m or \033[32;1mbuild-exa\033[0m to create it"
|
||
|
fi
|