From 40a29acb940e0e2ea123b9ad3018ce8704fc8ffa Mon Sep 17 00:00:00 2001 From: stackotter Date: Tue, 19 Dec 2023 21:31:45 +1000 Subject: [PATCH] Fix Windows GitHub Actions workflow (had the wrong syntax for a multiline continuation in PowerShell) --- .github/workflows/swift-windows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/swift-windows.yml b/.github/workflows/swift-windows.yml index 34c77506..2fd5b796 100644 --- a/.github/workflows/swift-windows.yml +++ b/.github/workflows/swift-windows.yml @@ -43,6 +43,6 @@ jobs: PKG_CONFIG_PATH: ${{ github.workspace }}/vcpkg_installed/${{ steps.triplet.outputs.lowercase }}/lib/pkgconfig # Only build the library target to work around apple/swift-package-manager#6644 run: | - swift build --target SwiftCrossUI -v && \ - cd Backends/GtkBackend && \ + swift build --target SwiftCrossUI -v && ` + cd Backends/GtkBackend && ` swift build --target GtkBackend -v