diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2024-04-06 03:43:49 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2024-04-06 03:43:49 +0200 |
commit | df46f531b79197621c3b66523cceece474c1367a (patch) | |
tree | 2c7d5742c4206664f87f7f965ed2a60a48f65f2a /.ci | |
parent | Fix makepri parameters (diff) | |
download | nheko-df46f531b79197621c3b66523cceece474c1367a.tar.xz |
Try to fix missing resources.pri
Diffstat (limited to '.ci')
-rw-r--r-- | .ci/windows/build.bat | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.ci/windows/build.bat b/.ci/windows/build.bat index 304d4781..a95db4fd 100644 --- a/.ci/windows/build.bat +++ b/.ci/windows/build.bat @@ -52,8 +52,10 @@ del msix\vc_redist* ::@PowerShell "Get-Content .\msix\AppxManifest.xml" :: Generate resource files to be able to use unplated icons -makepri createconfig /cf msix\priconfig.xml /dq EN-US -makepri new /pr msix /cf msix\priconfig.xml +cd msix +makepri createconfig /cf priconfig.xml /dq EN-US +makepri new /pr . /cf priconfig.xml +cd .. :: Build the msix makeappx pack -d msix -p nheko.msix |