Add upload_host helper target
This commit is contained in:
parent
0afd0d8147
commit
2c2644505d
8
Makefile
8
Makefile
|
@ -1,3 +1,11 @@
|
||||||
default:
|
default:
|
||||||
$(CC) build.c
|
$(CC) build.c
|
||||||
./a.out || build.exe
|
./a.out || build.exe
|
||||||
|
upload_host:
|
||||||
|
git fetch origin binaries:binaries
|
||||||
|
git checkout binaries
|
||||||
|
cp dist/*.node .
|
||||||
|
git add *.node
|
||||||
|
git commit -m "Manually updated host binaries"
|
||||||
|
git push origin binaries
|
||||||
|
git checkout master
|
||||||
|
|
Loading…
Reference in New Issue