Skip to content

Commit

Permalink
Merge pull request #697 from wise0n/development
Browse files Browse the repository at this point in the history
fix: parameter expansion
  • Loading branch information
Euro20179 authored Sep 14, 2023
2 parents 5b1664b + 7f3af51 commit 8c25b14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ytfzf
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ on_load_fake_extension___ytfzf_search_history__() {
: "${search_hist_file:="$cache_dir/search_hist"}"
on_opt_parse_q() {
if [ "$enable_search_hist" -eq 0 ]; then
die 1 'In order to use this search history must be enabled${new_line}'
die 1 "In order to use this search history must be enabled${new_line}"
fi
[ ! -s "$search_hist_file" ] && die 1 "You have no search history${new_line}"
search_source="hist"
Expand Down Expand Up @@ -644,7 +644,7 @@ download_thumbnails() {
print_info "Skipping thumbnail download${new_line}"
return 0
}
[ "$async_thumbnails" -eq 0 ] && print_info 'Fetching thumbnails...${new_line}'
[ "$async_thumbnails" -eq 0 ] && print_info "Fetching thumbnails...${new_line}"
curl_config_file="${session_temp_dir}/curl_config"
[ -z "$*" ] && return 0
: >"$curl_config_file"
Expand Down

0 comments on commit 8c25b14

Please sign in to comment.