Skip to content

Commit

Permalink
WIP: ignore scripts/fsx when compiling .fsx files
Browse files Browse the repository at this point in the history
  • Loading branch information
webwarrior-ws committed Nov 26, 2024
1 parent 1ef6c2b commit 96eedb1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,8 @@ jobs:
# make it work with newer .NET
export DOTNET_ROLL_FORWARD=Major
find . -type f -name "*.fsx" | xargs -t -I {} dotnet fsxc {}
# ignore scripts/fsx submodule as compiling scripts there will result in error
find . -path "./scripts/fsx" -prune -o -type f -name "*.fsx" | xargs -t -I {} dotnet fsxc {}
linux-github--dotnet-and-newmono:
runs-on: ubuntu-22.04
Expand Down

0 comments on commit 96eedb1

Please sign in to comment.