Skip to content

Commit

Permalink
Fix semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
willend committed Nov 27, 2024
1 parent 668ffb9 commit 59830c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/mcstas-basictest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ jobs:
mkdir build_mcstas
cd build_mcstas
export EXTRA_ARGS_FOR_CMAKE=""
if [ "$RUNNER_OS" == "macOS" ] && [ -d "/opt/homebrew/opt" ]; then; export HOMEBRW="/opt/homebrew/opt"; fi
if [ "$RUNNER_OS" == "macOS" ] && [ -d "/usr/local/opt" ]; then; export HOMEBRW="/usr/local/opt"; fi
if [ "$RUNNER_OS" == "macOS" ] && [ -d "/opt/homebrew/opt" ]; then export HOMEBRW="/opt/homebrew/opt"; fi
if [ "$RUNNER_OS" == "macOS" ] && [ -d "/usr/local/opt" ]; then export HOMEBRW="/usr/local/opt"; fi
if [ "$RUNNER_OS" == "macOS" ]; then export EXTRA_ARGS_FOR_CMAKE="-DBISON_EXECUTABLE=${HOMEBRW}/bison/bin/bison -DFLEX_EXECUTABLE=${HOMEBRW}/flex/bin/flex"; fi
if [ "$RUNNER_OS" == "Linux" ]; then export EXTRA_ARGS_FOR_CMAKE="-DNEXUSLIB=/usr/lib -DNEXUSINCLUDE=/usr/include/nexus"; fi
cmake \
Expand Down

0 comments on commit 59830c4

Please sign in to comment.