Skip to content

Commit

Permalink
Fix get_gmsh and get_cmake for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasCeulemans committed Mar 22, 2024
1 parent da14390 commit 99dd868
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dependencies/get_cmake.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ case "`uname -s`" in
;;
Darwin*)
echo "Recognized macOS as OS (assuming x86_64), installing..."
curl https://github.com/Kitware/CMake/releases/download/v3.19.1/cmake-3.19.1-Darwin-x86_64.tar.gz -O cmake.tar.gz
curl -o cmake.tar.gz https://github.com/Kitware/CMake/releases/download/v3.19.1/cmake-3.19.1-Darwin-x86_64.tar.gz
# Untar the file
tar -zxvf cmake.tar.gz
# Rename directory
Expand Down
2 changes: 1 addition & 1 deletion dependencies/get_gmsh.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ case "`uname -s`" in
;;
Darwin*)
echo "Recognized macOS as OS (assuming x86_64), installing..."
curl https://gmsh.info/bin/MacOSX/gmsh-4.7.1-MacOSX-sdk.tgz -O gmsh.tgz
curl -o gmsh.tgz https://gmsh.info/bin/MacOSX/gmsh-4.7.1-MacOSX-sdk.tgz
# Untar the file
tar -zxvf gmsh.tgz
# Rename directory
Expand Down

0 comments on commit 99dd868

Please sign in to comment.