From 422bf2babd81ac1a8261066bfb00205d5debefbe Mon Sep 17 00:00:00 2001 From: richard Date: Fri, 10 Feb 2023 18:03:23 +0000 Subject: [PATCH] missed on path change --- scripts/fossil.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/fossil.sh b/scripts/fossil.sh index 0bc62f4..a57a294 100755 --- a/scripts/fossil.sh +++ b/scripts/fossil.sh @@ -79,9 +79,8 @@ checkEmptySymbol() # check to see if the current repo is not up to date with HEAD checkForChanges() { - [ $no_untracked_files == "false" ] && no_untracked="" || no_untracked="-uno" if [ "$(checkForFossilDir)" == "true" ]; then - if [ "$(fossil changes --differ --extra)" != "" ]; then + if [ "$(cd $path; fossil changes --differ)" != "" ]; then echo "true" else echo "false"