mirror of
https://github.com/denisidoro/navi.git
synced 2026-07-25 02:57:46 +00:00
The code was indented using `dot code beautify` Related: https://github.com/denisidoro/dotfiles
13 lines
No EOL
225 B
Bash
13 lines
No EOL
225 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
|
|
} |