From 55351387843c9c488e1b84ac8915448f5df37d83 Mon Sep 17 00:00:00 2001 From: Conduitry Date: Sun, 19 May 2019 02:07:38 -0400 Subject: [PATCH] commit without running verify hooks --- npm2git.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/npm2git.sh b/npm2git.sh index bbde767..35e4bf4 100755 --- a/npm2git.sh +++ b/npm2git.sh @@ -32,7 +32,7 @@ git rm --cached -rf . # commit the files that should be included in the published package PKG_TAR="$(npm pack | tail -n 1)" tar tf "$PKG_TAR" | cut -c 9- | xargs -d '\n' git add -f -git commit -m "v$PKG_VERSION @ $ORIG_COMMIT" +git commit -nm "v$PKG_VERSION @ $ORIG_COMMIT" # return to original state rm "$PKG_TAR"