From 432d3fd3c3f756fb4334a80c52a150527749cae7 Mon Sep 17 00:00:00 2001 From: MaysWind Date: Tue, 26 Sep 2023 00:57:56 +0800 Subject: [PATCH] add missing files when building package --- build.bat | 1 + build.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/build.bat b/build.bat index 749e83e0..d7dac165 100644 --- a/build.bat +++ b/build.bat @@ -223,6 +223,7 @@ goto :pre_parse_args xcopy ezbookkeeping.exe package\ xcopy dist package\public /e /i xcopy conf package\conf /e /i + xcopy templates package\templates /e /i xcopy LICENSE package\ cd package diff --git a/build.sh b/build.sh index e4fb8427..b7aad5b1 100755 --- a/build.sh +++ b/build.sh @@ -206,6 +206,7 @@ build_package() { cp ezbookkeeping package/ cp -R dist package/public cp -R conf package/conf + cp -R templates package/templates cp LICENSE package/ cd package || { echo_red "Error: Build Failed"; exit 1; }