Skip to content

Commit 7883713

Browse files
committed
Fix syntax error in conditional check for date input in parse_gitlog.sh
1 parent fac86e8 commit 7883713

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parse_gitlog.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#If no date passed in, use today.
66
thevar=""
7-
if [$1 -eq ""]; then
7+
if [ "$1" = "" ]; then
88
thevar=`date +"%F"`
99
else
1010
thevar=$1

0 commit comments

Comments
 (0)