File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ LOG_MD_FILE="${1:-/dev/null}"
88
99FMT_CURRENT=$( git -C " $PROJDIR /vendor/fmt" describe --tags)
1010FMT_VERSION=" $( gh api repos/fmtlib/fmt/releases/latest --jq ' .tag_name' ) "
11- if " $FMT_CURRENT " ! = " $FMT_VERSION "
11+ if [ " $FMT_CURRENT " != " $FMT_VERSION " ]
1212then
1313 echo " - Bumps vendor/fmt from $FMT_CURRENT to $FMT_VERSION " | \
1414 tee -a $LOG_MD_FILE
1717
1818SPDLOG_CURRENT=$( git -C " $PROJDIR /vendor/spdlog" describe --tags)
1919SPDLOG_VERSION=" $( gh api repos/gabime/spdlog/releases/latest --jq ' .tag_name' ) "
20- if " $SPDLOG_CURRENT " ! = " $SPDLOG_VERSION "
20+ if [ " $SPDLOG_CURRENT " != " $SPDLOG_VERSION " ]
2121then
2222 echo " - Bumps vendor/spdlog from $SPDLOG_CURRENT to $SPDLOG_VERSION " | \
2323 tee -a $LOG_MD_FILE
You can’t perform that action at this time.
0 commit comments