Skip to content

Commit 16f7047

Browse files
committed
Fix the build failure - a variable movement was not carried out properly
1 parent 4987dc2 commit 16f7047

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ module.exports = function(grunt) {
7979
if (!buildVersion) {
8080
return localCfg.mainPackageContent.version;
8181
}
82-
return packageContent.version + "-" + buildVersion;
82+
return localCfg.mainPackageContent.version + "-" + buildVersion;
8383
};
8484

8585
var processAppFile = function(content, srcPath) {

0 commit comments

Comments
 (0)