Skip to content

Commit 106f213

Browse files
authored
Merge pull request #86 from modelstudioai/cx/fix-desktop-release-version-check
fix(desktop): unblock versioned release builds
2 parents 783e368 + 3edaad7 commit 106f213

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

packages/desktop-shell/scripts/smoke-packaged.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ function verifyMacRuntimeCommit() {
223223
if (process.platform !== 'darwin') return;
224224
const manifestPath = path.resolve(
225225
path.dirname(executable),
226-
'../Resources/runtime/qwen-code/manifest.json',
226+
'../Resources/runtime/openwork/manifest.json',
227227
);
228228
const manifest = JSON.parse(fs.readFileSync(manifestPath, 'utf8'));
229229
const expected =

packages/desktop-shell/scripts/test-release.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ function testDesktopConfiguration() {
114114
);
115115
assert.equal(config.productName, 'OpenWork');
116116
assert.equal(config.identifier, 'com.alibaba.openwork');
117-
assert.equal(config.version, '0.2.0');
118117
assert.equal(config.build.devUrl, 'http://127.0.0.1:1420');
119118
assert.equal(config.build.frontendDist, '../bootstrap');
120119
assert.equal(config.app?.withGlobalTauri, true);

0 commit comments

Comments
 (0)