From 61ad98dec8beb1b32ef71a51bdcbba71ef08127e Mon Sep 17 00:00:00 2001 From: Charlie Vanaret Date: Sat, 16 Nov 2024 14:41:18 +0100 Subject: [PATCH] [CI] fixed sed syntax in macOS build test --- .github/workflows/build-macos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index f19ad0d5..854fa097 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -34,7 +34,7 @@ jobs: - name: Clean up FortranCInterface_VERIFY # FortranCInterface_VERIFY fails on macOS, but it's not actually needed for the current build - run: sed -i 's/FortranCInterface_VERIFY(CXX)/# FortranCInterface_VERIFY(CXX)/g' ${{github.workspace}}/CMakeLists.txt + run: sed -i".backup" 's/FortranCInterface_VERIFY(CXX)/# FortranCInterface_VERIFY(CXX)/g' ${{github.workspace}}/CMakeLists.txt - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.