From d55e1010166ad64b3628d1c9cd12ba530609687e Mon Sep 17 00:00:00 2001 From: Myk Taylor Date: Sun, 12 Jan 2025 02:12:10 -0800 Subject: [PATCH] more debugging --- build/build-win64-from-linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/build-win64-from-linux.sh b/build/build-win64-from-linux.sh index 72041b0007..04d6ee92a0 100755 --- a/build/build-win64-from-linux.sh +++ b/build/build-win64-from-linux.sh @@ -44,7 +44,7 @@ if ! docker run --rm -i -v "$srcdir":/src -v "$srcdir/build/win64-cross/":/src/b -e steam_password \ --name dfhack-win \ ghcr.io/dfhack/build-env:master \ - bash -c "cd /src/build && dfhack-configure windows 64 Release -DCMAKE_INSTALL_PREFIX=/src/build/output -DBUILD_DOCS=1 $CMAKE_EXTRA_ARGS && dfhack-make -j$jobs install && echo breakerbreaker && find -iname '*.pdb' && echo breakerbreaker && find -maxdepth 1 -name depends -o -name library -o -name plugins && echo breakerbreaker && find $(find -maxdepth 1 -name depends -o -name library -o -name plugins) -iname '*.pdb' && echo breakerbreaker && find $(find -maxdepth 1 -name depends -o -name library -o -name plugins) -iname '*.pdb' -exec cp '{}' pdb/ \;" \ + bash -c "cd /src/build && dfhack-configure windows 64 Release -DCMAKE_INSTALL_PREFIX=/src/build/output -DBUILD_DOCS=1 $CMAKE_EXTRA_ARGS && dfhack-make -j$jobs install && echo find $(find -maxdepth 1 -name depends -o -name library -o -name plugins) -name '*.pdb' -type f -exec cp '{}' pdb/ \; && find $(find -maxdepth 1 -name depends -o -name library -o -name plugins) -name '*.pdb' -type f -exec cp '{}' pdb/ \;" \ ; then echo echo "Build failed"