From 4de63e612d9fe6437f07cf1c0b2aed0f03b55c43 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Mon, 1 Oct 2018 17:18:31 +0200 Subject: [PATCH] also commit the lock file when bumping version as it is now committed to the repo --- release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release.sh b/release.sh index b5bdb010ce..95eb4d463f 100755 --- a/release.sh +++ b/release.sh @@ -42,7 +42,7 @@ echo "electron npm version" cd electron_app npm version --no-git-tag-version "$release" -git commit package.json -m "$tag" +git commit package.json package-lock.json -m "$tag" cd ..