Skip to content

Commit

Permalink
fix build-script to ignore Playground
Browse files Browse the repository at this point in the history
  • Loading branch information
RodXPP committed May 26, 2023
1 parent afcd40d commit a186baf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build-script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ for project in */*; do
# Determine the language based on the parent directory
language=$(dirname "$project")

# Check if project is a C# Playground, if so, skip
if [[ "$language" == "c#" && "$project" == *"Playground"* ]]; then
continue
fi

# Build the project based on the language
case "$language" in
c)
Expand Down

0 comments on commit a186baf

Please sign in to comment.