Bump to 0.17.0

This commit is contained in:
Denis Isidoro 2019-12-17 13:36:57 -03:00
parent 61ba531490
commit ac39ac630c
2 changed files with 3 additions and 3 deletions

2
navi
View file

@ -4,7 +4,7 @@ set -euo pipefail
export NAVI_HOME="$(cd "$(dirname "$0")" && pwd)"
source "${NAVI_HOME}/src/main.sh"
VERSION="0.16.0"
VERSION="0.17.0"
NAVI_ENV="${NAVI_ENV:-prod}"
opts::eval "$@"

View file

@ -20,7 +20,7 @@ ui::fzf() {
ui::select() {
local -r cheats="$1"
[[ "$SHELL" =~ 'fish' ]] || local -r sub='$'
[[ "${SHELL:-}" =~ 'fish' ]] || local -r sub='$'
local -r script_path="${NAVI_HOME}/navi"
local -r preview_cmd="\"${script_path}\" preview ${sub:-}(echo \'{}\' | $(arg::serialize_code))"
@ -95,4 +95,4 @@ ui::print_preview() {
printf " \033[${tag_color}m["; echo -n "$tags"; echo "]"
printf "\033[${snippet_color}m"
echo "$snippet" | ui::remove_dep_order
}
}