Skip to content

Commit 2bc8759

Browse files
authored
Fix Windows Doxygen install script (#2234)
* - Fix Windows Doxygen install script as Doxygen v1.16.0 changed the released zip name. Signed-off-by: cuneyt.ozdas <cuneyt.ozdas@autodesk.com> * double escape maybe? Signed-off-by: cuneyt.ozdas <cuneyt.ozdas@autodesk.com> --------- Signed-off-by: cuneyt.ozdas <cuneyt.ozdas@autodesk.com>
1 parent 1d77ecd commit 2bc8759

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

share/ci/scripts/windows/install_doxygen.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ DOXYGEN_LOCATION="$1"
1010
choco install jq
1111

1212
# Get the URL of the latest zip package for Doxygen.
13-
url=$(curl -s 'https://api.github.com/repos/doxygen/doxygen/releases/latest' | jq -r '.assets[] | select(.name | test("doxygen-.*windows.x64.bin.zip")) | .browser_download_url')
13+
url=$(curl -s 'https://api.github.com/repos/doxygen/doxygen/releases/latest' | jq -r '.assets[] | select(.name | test("doxygen-.*\\.x64\\.bin\\.zip")) | .browser_download_url')
1414

1515
# Download the zip.
1616
mkdir $DOXYGEN_LOCATION

0 commit comments

Comments
 (0)