mirror of
https://github.com/denisidoro/navi
synced 2024-11-22 03:23:05 +00:00
8f2bc5f7e7
Fixes #170 and #171
11 lines
197 B
Bash
Executable file
11 lines
197 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
export NAVI_HOME="$(cd "$(dirname "$0")" && pwd)"
|
|
source "${NAVI_HOME}/src/main.sh"
|
|
|
|
VERSION="0.17.1"
|
|
NAVI_ENV="${NAVI_ENV:-prod}"
|
|
|
|
opts::eval "$@"
|
|
main "$@"
|