Skip to content

Commit 1e96166

Browse files
author
Tony Sansone
committed
Updated for tab vs. space.
1 parent fec8dc9 commit 1e96166

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

Makefile

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
if [-z "${GIT_BRANCH}"]
2-
GIT_BRANCH=`$(shell git rev-parse --abbrev-ref HEAD)`
3-
fi
4-
if [-z "${USER}"]
5-
USER=`whoami`
6-
fi
1+
ifeq($(GIT_BRANCH), "")
2+
GIT_BRANCH=`$(shell git rev-parse --abbrev-ref HEAD)`
3+
endif
4+
5+
ifeq($(USER), "")
6+
USER=`whoami`
7+
endif
8+
79
STAGING_URL="https://docs-mongodborg-staging.corp.mongodb.com"
810
PRODUCTION_URL="https://docs.mongodb.com"
911
STAGING_BUCKET=docs-mongodb-org-staging

0 commit comments

Comments
 (0)