diff options
| author | Dan Engelbrecht <[email protected]> | 2023-08-22 14:16:42 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-08-22 14:16:42 +0200 |
| commit | 013e0360db889f33def16c0cdbff370267819155 (patch) | |
| tree | 0de8e7f47aacba05d16f282ef1f6aba736cb5337 /scripts/bundle.lua | |
| parent | Fix construction order in OpenProcessCache (#374) (diff) | |
| download | zen-013e0360db889f33def16c0cdbff370267819155.tar.xz zen-013e0360db889f33def16c0cdbff370267819155.zip | |
revive UE toolchain build (#343)
* add comment about 7z usage in xmake bundle
* add ue-libcxx lib/headers and licence + tps
* update get_ue_toolchain.sh to use embedded libc++ and decouple from p4
* clearer output when falling back to zip from 7z
* update ci scripts to use ue toolchain on linux
* updated linux build README.md
* changelog
Diffstat (limited to 'scripts/bundle.lua')
| -rw-r--r-- | scripts/bundle.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/bundle.lua b/scripts/bundle.lua index 30ce9554b..a8a6b973a 100644 --- a/scripts/bundle.lua +++ b/scripts/bundle.lua @@ -103,7 +103,8 @@ local function _zip(store_only, zip_path, ...) end return end - print("7z not found") + + print("7z not found, falling back to zip") import("detect.tools.find_zip") zip_cmd = find_zip() |