Skip to content

Commit 857f645

Browse files
authored
fix: windows package output path (#4265)
1 parent 2521611 commit 857f645

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/Makefile.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ FLUTTER_OUTPUT_DIR = "Release"
127127
PRODUCT_EXT = "exe"
128128
CRATE_TYPE = "cdylib"
129129
LIB_EXT = "dll"
130-
BUILD_ARCHS = "x86"
130+
BUILD_ARCHS = "x64"
131131
APP_ENVIRONMENT = "production"
132132

133133
[env.development-linux-x86_64]

frontend/scripts/makefile/flutter.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ script = [
210210
mkdir ${output_path}
211211
212212
product= set ${PRODUCT_NAME}
213-
glob_cp ${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/appflowy_flutter/build/${TARGET_OS}/runner/${FLUTTER_OUTPUT_DIR}/**/* \
213+
glob_cp ${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/appflowy_flutter/build/${TARGET_OS}/${BUILD_ARCHS}/runner/${FLUTTER_OUTPUT_DIR}/**/* \
214214
${output_path}/${product}
215215
""",
216216
]

0 commit comments

Comments
 (0)