From d6d58e8360ecae4746e9c08d63b018281e03a827 Mon Sep 17 00:00:00 2001 From: Josh Harshman Date: Mon, 31 Jul 2023 14:31:28 -0600 Subject: [PATCH] bugfix: Missing newline for PATH modification This PR fixes a small bug that can cause an error in the rc file when the path to fwsync is appeneded. To avoid this a newline is placed before the call to export. --- install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install.sh b/install.sh index e6bfb10..1dab89f 100755 --- a/install.sh +++ b/install.sh @@ -28,6 +28,7 @@ fi # update PATH if required. if ! grep -q '# ADDED BY FWSYNC' $rcfile; then + echo "" echo "export PATH=\$HOME/.local/bin:\$PATH # ADDED BY FWSYNC" >> $rcfile fi