Skip to content

Commit 9343f58

Browse files
authored
Fix typo in bin/mkvdate that was preventing it from executing correctly (#534)
1 parent 4994982 commit 9343f58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/mkvdate

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22
if command -v "git" >/dev/null 2>&1; then
33
MAIKO_REV="$(git status --porcelain)"
4-
if [ $? == 0 ]; then
4+
if [ $? -eq 0 ]; then
55
if [ ! -z "$(git status --porcelain)" ]; then
66
MAIKO_REV="$(git rev-parse --short HEAD)-dirty"
77
else

0 commit comments

Comments
 (0)