Skip to content

Commit

Permalink
Remove -S
Browse files Browse the repository at this point in the history
  • Loading branch information
liujiayi771 committed Mar 21, 2024
1 parent 99cca16 commit 661c570
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions scripts/setup-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,15 +90,15 @@ function install_fizz {
wget_and_untar https://github.com/facebookincubator/fizz/archive/refs/tags/${FB_OS_VERSION}.tar.gz fizz
(
cd fizz/fizz
cmake_install -DBUILD_TESTS=OFF -S fizz
cmake_install -DBUILD_TESTS=OFF
)
}

function install_wangle {
wget_and_untar https://github.com/facebook/wangle/archive/refs/tags/${FB_OS_VERSION}.tar.gz wangle
(
cd wangle/wangle
cmake_install -DBUILD_TESTS=OFF -S wangle
cmake_install -DBUILD_TESTS=OFF
)
}

Expand Down
4 changes: 2 additions & 2 deletions scripts/setup-ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -100,15 +100,15 @@ function install_fizz {
wget_and_untar https://github.com/facebookincubator/fizz/archive/refs/tags/${FB_OS_VERSION}.tar.gz fizz
(
cd fizz/fizz
cmake_install -DBUILD_TESTS=OFF -S fizz
cmake_install -DBUILD_TESTS=OFF
)
}

function install_wangle {
wget_and_untar https://github.com/facebook/wangle/archive/refs/tags/${FB_OS_VERSION}.tar.gz wangle
(
cd wangle/wangle
cmake_install -DBUILD_TESTS=OFF -S wangle
cmake_install -DBUILD_TESTS=OFF
)
}

Expand Down

0 comments on commit 661c570

Please sign in to comment.