diff --git a/Makefile b/Makefile index 80664bf..b2f1191 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,11 @@ default: $(CC) build.c ./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