Skip to content
This repository has been archived by the owner on Dec 4, 2018. It is now read-only.

Commit

Permalink
Prevent premature return in configure (#92)
Browse files Browse the repository at this point in the history
Fixes #91
  • Loading branch information
jmshal authored and kattrali committed Jan 24, 2017
1 parent e77d78e commit 597720f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/configuration.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ var Configuration = {
Configuration.projectRoot = Utils.fullPath(options.projectRoot);
}
if ((options.packageJSON != null) && !Configuration.appVersion) {
return Configuration.appVersion = Utils.getPackageVersion(Utils.fullPath(options.packageJSON));
Configuration.appVersion = Utils.getPackageVersion(Utils.fullPath(options.packageJSON));
}
Configuration.sendCode = options.sendCode || Configuration.sendCode;
}
Expand Down

0 comments on commit 597720f

Please sign in to comment.