From 991c23983cd0d76e209e1791dcb45abba3185393 Mon Sep 17 00:00:00 2001 From: Daniel Zlotin Date: Wed, 28 Feb 2018 18:12:27 +0200 Subject: [PATCH] debug travis deploy --- scripts/release.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release.js b/scripts/release.js index 617cc30ae45..772768676e5 100644 --- a/scripts/release.js +++ b/scripts/release.js @@ -60,7 +60,7 @@ function copyNpmRc() { function tagAndPublish(newVersion) { console.log(`new version is: ${newVersion}`); execSync(`npm version ${newVersion} -m "v${newVersion} [ci skip]"`); - execSyncSilently(`git push deploy --tags`); + execSync(`git push deploy --tags --verbose`); execSync(`npm publish --tag latest`); }