diff options
Diffstat (limited to '')
-rwxr-xr-x | home-manager/config/lf/commands/scripts/mk_ln | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home-manager/config/lf/commands/scripts/mk_ln b/home-manager/config/lf/commands/scripts/mk_ln index 7d626345..6563f29b 100755 --- a/home-manager/config/lf/commands/scripts/mk_ln +++ b/home-manager/config/lf/commands/scripts/mk_ln @@ -5,12 +5,12 @@ SHELL_LIBRARY_VERSION="1.1.3" . %SHELL_LIBRARY_PATH while IFS= read -r i;do set -- "$@" "$i" -done < "$(tmp 'cat ~/.local/share/lf/files')" +done < "$HOME"/.local/share/lf/files mode="$1" shift -if [ "$#" -lt 1 ]; then +if [ "$#" -eq 0 ]; then msg "no files to link" exit 0 fi |