Skip to content

Commit 6c225f3

Browse files
committed
main branch is now "main"
1 parent 96a53b6 commit 6c225f3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ test-all:
88

99
publish: validate-git-status
1010
npm publish
11-
git push origin master
12-
git push origin master --tags
11+
git push origin main
12+
git push origin --tags
1313

1414
validate-git-status:
15-
@ if [ "`git symbolic-ref --short HEAD`" != "master" ] ; \
16-
then echo "Not on the master branch!\n" ; exit 1 ; \
15+
@ if [ "`git symbolic-ref --short HEAD`" != "main" ] ; \
16+
then echo "Not on the main branch!\n" ; exit 1 ; \
1717
fi
1818
@ if ! git diff --exit-code --quiet ; \
1919
then echo "Local differences!\n" ; git status ; exit 1 ; \

0 commit comments

Comments
 (0)