Skip to content

Commit

Permalink
remove stray space, Closes: #1041609
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrfai committed Jul 24, 2023
1 parent 7d1f2e2 commit 3e72cdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/get-config-dir-svn
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ user=
[ -n "$username" ] && user="--username $username"

if [ -d "$FAI/.svn" ] ; then
if [ $(svn info $FAI | awk '/ ^URL:/ {print $2}') == "$svnurl" ]; then
if [ $(svn info $FAI | awk '/^URL:/ {print $2}') == "$svnurl" ]; then
echo "Updating SVN in $FAI"
cd $FAI
svn up $user $pass | grep -v 'Updated to revision' > $LOGDIR/getconf.log
Expand Down

0 comments on commit 3e72cdd

Please sign in to comment.