From 2c2644505d25f2d8f5dec038d4044f7567de00b3 Mon Sep 17 00:00:00 2001 From: Alex Hultman Date: Sun, 24 Oct 2021 23:07:44 +0200 Subject: [PATCH] Add upload_host helper target --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) 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