Skip to content

Commit

Permalink
add export option to publish so we can set it to false
Browse files Browse the repository at this point in the history
  • Loading branch information
greggman committed Aug 8, 2015
1 parent a69c6c1 commit 02fd3bc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion management/publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ var utils = require('../lib/utils');
* confirmations
* @property {string?} version set to a specific version
* @property {string} repoUrl url of repo of game to register
* @property {boolean} export true to export projects that need exporting like unity3d
* @property {string?} endpoint base url to register game. eg
* http://foo.com
* @property {string?} email email address to send notification.
Expand Down Expand Up @@ -214,7 +215,7 @@ var publish = function(gamePath, options) {
return make.make(gamePath, filePath, {
exporterPath: options.exporterPath,
exportPackage: options.exportPackage,
export: true,
export: options.export,
});
}).then(function(files) {
files.forEach(function(file) {
Expand Down

0 comments on commit 02fd3bc

Please sign in to comment.