🐛 Fix Windows actions test path

This commit is contained in:
Tw93
2025-08-23 16:21:48 +08:00
parent dcfd00e6e1
commit d1641e92ba
3 changed files with 4 additions and 4 deletions

2
dist/cli.js vendored
View File

@@ -22,7 +22,7 @@ import sharp from 'sharp';
import * as psl from 'psl';
var name = "pake-cli";
var version = "3.2.15";
var version = "3.2.16";
var description = "🤱🏻 Turn any webpage into a desktop app with Rust. 🤱🏻 利用 Rust 轻松构建轻量级多端桌面应用。";
var engines = {
node: ">=16.0.0"

View File

@@ -1,6 +1,6 @@
{
"name": "pake-cli",
"version": "3.2.15",
"version": "3.2.16",
"description": "🤱🏻 Turn any webpage into a desktop app with Rust. 🤱🏻 利用 Rust 轻松构建轻量级多端桌面应用。",
"engines": {
"node": ">=16.0.0"

View File

@@ -624,11 +624,11 @@ class PakeTestRunner {
win32: {
app: path.join(
config.PROJECT_ROOT,
`src-tauri/target/release/pake.exe`,
`src-tauri/target/x86_64-pc-windows-msvc/release/pake.exe`,
),
installer: path.join(
config.PROJECT_ROOT,
`src-tauri/target/release/bundle/msi/*.msi`,
`src-tauri/target/x86_64-pc-windows-msvc/release/bundle/msi/*.msi`,
),
},
};