From 6fddc4acd80952e65ebdd4725b438e8fb4e38e52 Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: Jun 03 2011 03:47:53 +0000 Subject: Update cli_commitRepoChanges.sh: - Perform subversion verifications over the location provided. Otherwise the diff report might be output duplicated, in some cases. --- diff --git a/Scripts/Functions/cli_commitRepoChanges.sh b/Scripts/Functions/cli_commitRepoChanges.sh index 84be750..d9d3b70 100755 --- a/Scripts/Functions/cli_commitRepoChanges.sh +++ b/Scripts/Functions/cli_commitRepoChanges.sh @@ -122,13 +122,13 @@ function cli_commitRepoChanges { # Outout separator line. cli_printMessage '-' --as-separator-line - # Verify changes. + # Verify changes on locations. cli_printMessage "`gettext "Do you want to see changes now?"`" --as-yesornorequest-line - svn diff ${FILES[*]} | less + svn diff $LOCATIONS | less - # Commit changes. + # Commit changes on locations. cli_printMessage "`gettext "Do you want to commit changes now?"`" --as-yesornorequest-line - svn commit ${FILES[*]} + svn commit $LOCATIONS fi