File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11CLANG ?= clang
22CFLAGS ?=
33OS ?=
4+ REMOTE ?= origin
45
56CFLAGS += -Os -g3 -Wall -Wextra -Wno-unused-parameter
67ifneq ($(OS ) ,Windows_NT)
@@ -72,15 +73,15 @@ github-release:
7273 open $$(gh release view release/${RELEASE_V} --json url -t "{{.url}}" )
7374
7475postversion : release
75- git fetch origin
76- git push
76+ git fetch $( REMOTE )
77+ git push $( REMOTE )
7778 git checkout release --
7879 cp -rf release/* ./
7980 rm -rf build release
8081 git add include src * .gyp * .gypi CMakeLists.txt README.md LICENSE libllhttp.pc.in cmake/llhttpConfig.cmake.in
81- git commit -a -m " release: $( RELEASE) "
82+ git commit -a -n - m " release: $( RELEASE) "
8283 git tag " release/v$( RELEASE) "
83- git push && git push --tags
84+ git push $( REMOTE ) && git push $( REMOTE ) --tags
8485 git checkout main
8586
8687generate :
You can’t perform that action at this time.
0 commit comments