gf-packages-cli 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/exportPackage.js +1 -1
package/package.json
CHANGED
package/src/exportPackage.js
CHANGED
|
@@ -108,7 +108,7 @@ async function exportSinglePackage(deviceId, pkg, tmpBase, outputRoot) {
|
|
|
108
108
|
console.log(chalk.cyan(`\n----------------------------------------`));
|
|
109
109
|
console.log(chalk.white(`正在处理应用: ${pkg}`));
|
|
110
110
|
|
|
111
|
-
const version = getAppVersion(deviceId, pkg);
|
|
111
|
+
const version = await getAppVersion(deviceId, pkg);
|
|
112
112
|
console.log(chalk.gray(`当前版本号: ${version}`));
|
|
113
113
|
|
|
114
114
|
const remoteApkPaths = await getPackageApkPaths(deviceId, pkg);
|