diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2024-12-23 16:53:42 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2024-12-23 16:53:54 +0100 |
commit | ed8ba147bacc9edfe82825cfc5b0dcff8acb2924 (patch) | |
tree | be39e7c0d11fbdda0a8906e5120937bc2a6f3b06 | |
parent | c221a00c33067cc2c7f1019676de30d849536d6e (diff) | |
download | fiv-ed8ba147bacc9edfe82825cfc5b0dcff8acb2924.tar.gz fiv-ed8ba147bacc9edfe82825cfc5b0dcff8acb2924.tar.xz fiv-ed8ba147bacc9edfe82825cfc5b0dcff8acb2924.zip |
Improve packaging directory structure
-rwxr-xr-x | msys2-package.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/msys2-package.sh b/msys2-package.sh index 27729bb..b929cbc 100755 --- a/msys2-package.sh +++ b/msys2-package.sh @@ -1,7 +1,8 @@ #!/bin/sh -e export LC_ALL=C cd "$MESON_BUILD_ROOT" -arch=$1 msi=$2 files=package-files.wxs destdir=$(pwd)/package +arch=$1 msi=$2 files=package-files.wxs +destdir=$(pwd)/package/${msi%.*} shift 2 # We're being passed host_machine.cpu(), which will be either x86 or x86_64. |