Explorar o código

Fix whitespace passing

Jethro Beekman %!s(int64=8) %!d(string=hai) anos
pai
achega
c026b915d9
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      functions.sh

+ 2 - 2
functions.sh

@@ -10,10 +10,10 @@ git_extract() {
 }
 
 git_commits_ordered() {
-	format=$1
+	format="$1"
 	shift
 	if [ $# -ge 1 ]; then
-		git log --topo-order --no-walk=sorted --date=iso-local --pretty=format:$format "$@"
+		git log --topo-order --no-walk=sorted --date=iso-local --pretty=format:"$format" "$@"
 	fi
 	echo
 }