mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Fix the build failure - a variable movement was not carried out properly
This commit is contained in:
@@ -79,7 +79,7 @@ module.exports = function(grunt) {
|
||||
if (!buildVersion) {
|
||||
return localCfg.mainPackageContent.version;
|
||||
}
|
||||
return packageContent.version + "-" + buildVersion;
|
||||
return localCfg.mainPackageContent.version + "-" + buildVersion;
|
||||
};
|
||||
|
||||
var processAppFile = function(content, srcPath) {
|
||||
|
||||
Reference in New Issue
Block a user