@sciagent/cli 1.1.44 → 1.1.46
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/scripts/postinstall.js +1 -6
package/package.json
CHANGED
package/scripts/postinstall.js
CHANGED
|
@@ -27,7 +27,7 @@ const ARCH_MAP = {
|
|
|
27
27
|
};
|
|
28
28
|
|
|
29
29
|
// 当前版本号 - 每次发布时同步更新
|
|
30
|
-
const CURRENT_VERSION = '1.1.
|
|
30
|
+
const CURRENT_VERSION = '1.1.46';
|
|
31
31
|
|
|
32
32
|
// GitHub Releases 回退版本列表(当当前版本的 release 不存在时尝试)
|
|
33
33
|
const GITHUB_FALLBACK_VERSIONS = ['1.1.3', '1.0.50', '1.0.48', '1.0.46', '1.0.40', '1.0.38', '1.0.36'];
|
|
@@ -521,10 +521,6 @@ sys.exit(1)
|
|
|
521
521
|
return false;
|
|
522
522
|
}
|
|
523
523
|
|
|
524
|
-
// Releases 服务器配置
|
|
525
|
-
const RELEASE_SERVER_URL = process.env.RELEASE_SERVER_URL ||
|
|
526
|
-
'https://sciagent.tech';
|
|
527
|
-
|
|
528
524
|
/**
|
|
529
525
|
* 检查 sciagent 进程是否正在运行
|
|
530
526
|
*/
|
|
@@ -912,7 +908,6 @@ async function main() {
|
|
|
912
908
|
console.error(` 2. Visit: https://sciagent.tech`);
|
|
913
909
|
console.error('');
|
|
914
910
|
process.exit(1);
|
|
915
|
-
}
|
|
916
911
|
}
|
|
917
912
|
|
|
918
913
|
const verifyResult = checkBinaryInstalled(platform, arch);
|