We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
make publish
1 parent a9c781f commit 61aec34Copy full SHA for 61aec34
doc/manual/Makefile
@@ -157,7 +157,7 @@ doctest:
157
GITREPOPATH = $(shell cd $(CURDIR) && git rev-parse --git-dir)
158
GITREMOTE = origin
159
GITREMOTEURL = $(shell git config --get remote.$(GITREMOTE).url)
160
-GITLASTCOMMIT = $(shell git rev-parse HEAD)
+GITLASTCOMMIT = $(shell git --short rev-parse HEAD)
161
162
publish:
163
@test -d build/html || \
@@ -174,6 +174,6 @@ publish:
174
cd build/gh-pages && \
175
git add --all . && \
176
git diff --cached --quiet || \
177
- git commit -m "Synced with the source at $(GITLASTCOMMIT)."
+ git commit -m "Sync with the source at $(GITLASTCOMMIT)."
178
179
git push origin gh-pages
0 commit comments