mirror of
https://github.com/eza-community/eza.git
synced 2025-12-23 05:36:50 +00:00
7 lines
232 B
Bash
Executable file
7 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
|