Skip to content

Commit

Permalink
Fix tar command
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-r-thorpe committed Dec 4, 2024
1 parent 65af82d commit bebb2d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,8 @@ jobs:
echo "${{ matrix.os }}"
if [[ "${{ matrix.os }}" == "ubuntu-14.04" ]]; then
# Install CMake
curl -L http://www.cmake.org/files/v3.24/cmake-3.24.2.tar.gz -s | tar -xvzf
curl -L http://www.cmake.org/files/v3.24/cmake-3.24.2.tar.gz -s
tar -xvzf cmake-3.24.2.tar.gz
cd cmake-3.24.2/
./configure
make
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/src/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ jobs:
echo "${{ matrix.os }}"
if [[ "${{ matrix.os }}" == "ubuntu-14.04" ]]; then
# Install CMake
curl -L http://www.cmake.org/files/v3.24/cmake-3.24.2.tar.gz -s | tar -xvzf
curl -L http://www.cmake.org/files/v3.24/cmake-3.24.2.tar.gz -s
tar -xvzf cmake-3.24.2.tar.gz
cd cmake-3.24.2/
./configure
make
Expand Down

0 comments on commit bebb2d7

Please sign in to comment.