From e5af81a5f9d9d3a2af0d3e970815e3c73beb0840 Mon Sep 17 00:00:00 2001 From: Soispha Date: Sun, 28 May 2023 22:10:24 +0200 Subject: Fix(hm/conf/lf/cmds): Rework some of them --- home-manager/config/lf/commands/scripts/dl_file | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'home-manager/config/lf/commands/scripts/dl_file') diff --git a/home-manager/config/lf/commands/scripts/dl_file b/home-manager/config/lf/commands/scripts/dl_file index 0988bca6..13d294a8 100755 --- a/home-manager/config/lf/commands/scripts/dl_file +++ b/home-manager/config/lf/commands/scripts/dl_file @@ -5,12 +5,12 @@ SHELL_LIBRARY_VERSION="1.1.3" . %SHELL_LIBRARY_PATH # Provides the ability to download a file by dropping it into a window -url=$(dragon -t -x) +url="$(dragon -t -x)" if [ -n "$url" ]; then prompt "File Name: " name="" - while [ -z $name ] || [ -e $name ] + while [ -z "$name" ] || [ -e "$name" ] do read -r name if [ -e "$name" ]; then @@ -28,6 +28,6 @@ if [ -n "$url" ]; then # Download the file with curl [ -n "$name" ] && curl -o "$name" "$url" || die "curl failed" else - die "Url is null!" + die "URL is null!" fi # vim: ft=sh -- cgit 1.4.1