mirror of
https://github.com/denisidoro/navi
synced 2024-11-28 22:40:19 +00:00
13 lines
No EOL
222 B
Bash
13 lines
No EOL
222 B
Bash
#!/usr/bin/env bash
|
|
|
|
source <(
|
|
grep -v 'main ' "${SCRIPT_DIR}/navi" | sed -E "s|export.*|export SCRIPT_DIR=\"${SCRIPT_DIR}\"|")
|
|
|
|
test::success() {
|
|
echo "Test passed!"
|
|
}
|
|
|
|
test::fail() {
|
|
echo "Test failed..."
|
|
exit 42
|
|
} |