mirror of
https://github.com/Llewellynvdm/exa.git
synced 2024-11-10 23:00:56 +00:00
895808e945
Also, allow the --release flags to be passed to the build-exa and test-exa commands.
8 lines
232 B
Bash
Executable File
8 lines
232 B
Bash
Executable File
#!/bin/bash
|
|
if [[ -f ~/target/release/exa ]]; then
|
|
~/target/release/exa "$@"
|
|
else
|
|
echo -e "Release exa binary does not exist!"
|
|
echo -e "Run \033[32;1mb --release\033[0m or \033[32;1mbuild-exa --release\033[0m to create it"
|
|
fi
|