Repository: cordova-coho Updated Branches: refs/heads/master 44f746d09 -> a5decc8a9
CB-7574 generate plugins as a zip archive instead npm pack Project: http://git-wip-us.apache.org/repos/asf/cordova-coho/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-coho/commit/a5decc8a Tree: http://git-wip-us.apache.org/repos/asf/cordova-coho/tree/a5decc8a Diff: http://git-wip-us.apache.org/repos/asf/cordova-coho/diff/a5decc8a Branch: refs/heads/master Commit: a5decc8a99712cc2fc28984e7d8ff85bae1a5d0a Parents: 44f746d Author: Marcel Kinard <[email protected]> Authored: Wed Sep 17 17:34:36 2014 -0400 Committer: Marcel Kinard <[email protected]> Committed: Wed Sep 17 17:34:36 2014 -0400 ---------------------------------------------------------------------- src/create-verify-archive.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-coho/blob/a5decc8a/src/create-verify-archive.js ---------------------------------------------------------------------- diff --git a/src/create-verify-archive.js b/src/create-verify-archive.js index 206b446..e0379b6 100644 --- a/src/create-verify-archive.js +++ b/src/create-verify-archive.js @@ -71,7 +71,7 @@ exports.createCommand = function*(argv) { yield gitutil.gitCheckout(tag); print('Creating archive of ' + repo.repoName + '@' + tag); - if (!(repo.id==='mobile-spec' || repo.id==='app-hello-world')) { + if (!(repo.id==='mobile-spec' || repo.id==='app-hello-world' || repo.id.indexOf('plugin-')==0)) { if (yield gitutil.pendingChangesExist()) { apputil.fatal('Aborting because pending changes exist in ' + repo.repoName); }
