diff options
author | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2025-07-03 10:31:13 +0200 |
---|---|---|
committer | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2025-07-03 10:31:13 +0200 |
commit | e9a4eec0246b918417f4e92e9496c91506f49ccf (patch) | |
tree | cdb5ea5022b6094f85c1a371e3919294a2c9f0ca | |
parent | 98d2b72c031bbd557b3ee59f62014cec542b7793 (diff) | |
download | mana-e9a4eec0246b918417f4e92e9496c91506f49ccf.tar.gz mana-e9a4eec0246b918417f4e92e9496c91506f49ccf.tar.bz2 mana-e9a4eec0246b918417f4e92e9496c91506f49ccf.tar.xz mana-e9a4eec0246b918417f4e92e9496c91506f49ccf.zip |
AppVeyor: Removed "build/" directory from artifact download
-rw-r--r-- | .appveyor.yml | 2 | ||||
-rwxr-xr-x | packaging/msys2-build.sh | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 22124121..1ed5214c 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -12,4 +12,4 @@ build_script: C:\msys64\usr\bin\bash -lc "./packaging/msys2-build.sh" artifacts: - name: Installer - path: build/Mana-*-win64.exe + path: Mana-*-win64.exe diff --git a/packaging/msys2-build.sh b/packaging/msys2-build.sh index 209e725f..aa09425a 100755 --- a/packaging/msys2-build.sh +++ b/packaging/msys2-build.sh @@ -14,5 +14,4 @@ pacman --noconfirm -S \ cmake -B build . -DUSE_SYSTEM_GUICHAN=OFF -DCMAKE_BUILD_TYPE=Release cmake --build build -pushd build -cpack +cpack --config build/CPackConfig.cmake |