From b679c3ea500e27b61ccb681e5e1b0927e512c097 Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Tue, 17 Nov 2020 15:42:00 +0100 Subject: [PATCH] install_symlink: Fix whitespace --- install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index dbf07b7..69c5d99 100755 --- a/install.sh +++ b/install.sh @@ -96,10 +96,10 @@ function install_cron() function install_symlink() { - if [ "$(readlink "$2")" != "$1" ]; then - ln -sfv "$1" "$2" - fi - register_installed_file "$2" + if [ "$(readlink "$2")" != "$1" ]; then + ln -sfv "$1" "$2" + fi + register_installed_file "$2" } function postinstall()