Skip to content

Commit

Permalink
FLUID-5795: Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jobara committed Oct 26, 2015
1 parent a1117ae commit c594ba7
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,17 +144,17 @@ publish.checkChanges = function (options) {
* @param cmdTemplate {String} - A string template of the command to execute.
* Can provide tokens in the form ${tokenName}
* @param values {Object} - the tokens and their replacement.
e.g. {tokenName: "value to insert"}
* e.g. {tokenName: "value to insert"}
* @param isTest {Boolean} - indicates if this is a test run or not
*/
publish.execSyncFromTemplate = function (cmdTemplate, cmdValues, isTest) {
var cmdStr = es6Template(cmdTemplate, cmdValues);
if (isTest) {
publish.log("command: " + cmdStr);
} else {
publish.execSync(cmdStr);
}
};
publish.execSyncFromTemplate = function (cmdTemplate, cmdValues, isTest) {
var cmdStr = es6Template(cmdTemplate, cmdValues);
if (isTest) {
publish.log("command: " + cmdStr);
} else {
publish.execSync(cmdStr);
}
};

/**
* Updates the package.json version to the specified version
Expand Down

0 comments on commit c594ba7

Please sign in to comment.