Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions share/ci/scripts/linux/dnf/install_doxygen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ DOXYGEN_VERSION="$1"

if ! command -v doxygen >/dev/null; then
if command -v dnf >/dev/null; then
if [ "$DOXYGEN_VERSION" == "latest" ]; then
if [ "$DOXYGEN_VERSION" = "latest" ]; then
dnf install -y doxygen
else
dnf install -y doxygen-${DOXYGEN_VERSION}
Expand Down Expand Up @@ -46,7 +46,7 @@ EOF
yum makecache
fi

if [ "$DOXYGEN_VERSION" == "latest" ]; then
if [ "$DOXYGEN_VERSION" = "latest" ]; then
yum install -y doxygen
else
yum install -y doxygen-${DOXYGEN_VERSION}
Expand Down
2 changes: 1 addition & 1 deletion share/ci/scripts/macos/install_bison.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -ex

BISON_VERSION="$1"

if [ "$BISON_VERSION" == "latest" ]; then
if [ "$BISON_VERSION" = "latest" ]; then
brew install bison
else
brew install bison@${BISON_VERSION}
Expand Down
2 changes: 1 addition & 1 deletion share/ci/scripts/macos/install_boost.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -ex

BOOST_VERSION="$1"

if [ "$BOOST_VERSION" == "latest" ]; then
if [ "$BOOST_VERSION" = "latest" ]; then
brew install boost
else
brew install boost@${BOOST_VERSION}
Expand Down
2 changes: 1 addition & 1 deletion share/ci/scripts/macos/install_doxygen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -ex

DOXYGEN_VERSION="$1"

if [ "$DOXYGEN_VERSION" == "latest" ]; then
if [ "$DOXYGEN_VERSION" = "latest" ]; then
brew install --quiet --formula doxygen
else
brew install --quiet --formula doxygen@${DOXYGEN_VERSION}
Expand Down
2 changes: 1 addition & 1 deletion share/ci/scripts/macos/install_oiio.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -ex

OIIO_VERSION="$1"

if [ "$OIIO_VERSION" == "latest" ]; then
if [ "$OIIO_VERSION" = "latest" ]; then
brew install openimageio
else
brew install openimageio@${OIIO_VERSION}
Expand Down