From 55ce3d18e681be3ef6a86ed58508468512e0a2ef Mon Sep 17 00:00:00 2001 From: BruebachL <44814898+BruebachL@users.noreply.github.com> Date: Sun, 20 Sep 2026 19:12:33 +0200 Subject: [PATCH] Update .ci/compile.sh Co-authored-by: tooomm --- .ci/compile.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.ci/compile.sh b/.ci/compile.sh index 4d79a9f77..fc13d50c3 100755 --- a/.ci/compile.sh +++ b/.ci/compile.sh @@ -333,7 +333,7 @@ if [[ $MAKE_PACKAGE ]]; then cd "$BUILD_DIR" package="$(find . -maxdepth 1 -type f -name 'Cockatrice-*.exe' -print -quit)" if [[ ! $package ]]; then - echo "::error file=$0::could not find installer to inspect" + echo "::error file=$0::Could not find installer to inspect" exit 1 fi seven_zip="$(command -v 7z || true)" @@ -346,10 +346,10 @@ if [[ $MAKE_PACKAGE ]]; then echo "Inspecting $package" if "$seven_zip" l "$package" | grep -E "_autogen|\.dir[\\/]|\.tlog|(^|[\\/])x64[\\/]|(^|[\\/])\.qt[\\/]|(^|[\\/])\.qsb[\\/]|(^|[\\/])\.lupdate[\\/]|CMakeFiles"; then - echo "::error file=$0::installer contains build-tree artifacts" + echo "::error file=$0::Installer contains build-tree artifacts" exit 1 fi - echo "Installer content is clean." + echo "Installer content is clean" fi echo "::endgroup::" fi