You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
313 B
Bash
11 lines
313 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Source: https://stackoverflow.com/a/36625843
|
|
texec=$(echo $0 $*)
|
|
|
|
if [[ $texec == *"pkg-warner"* ]]; then
|
|
echo "This command is meant to be run via symlink"
|
|
else
|
|
echo "On Crystal, we don't use '$texec', we use 'ame'"
|
|
echo "For more specific usage information, see 'ame help'"
|
|
fi |