diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2020-12-13 21:04:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-13 21:04:19 (GMT) |
commit | a9da9ae5d96e594b6209c3d36f7893f55a955340 (patch) | |
tree | 0fafc1fa6c5ae971b731cddd31597b79f6486820 /.github/workflows | |
parent | d464d1f1e0d4a6f9010ed800621d1e2e4752e8f5 (diff) | |
download | Doxygen-a9da9ae5d96e594b6209c3d36f7893f55a955340.zip Doxygen-a9da9ae5d96e594b6209c3d36f7893f55a955340.tar.gz Doxygen-a9da9ae5d96e594b6209c3d36f7893f55a955340.tar.bz2 |
Update build_cmake.yml
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build_cmake.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build_cmake.yml b/.github/workflows/build_cmake.yml index f376d05..0ef6e93 100644 --- a/.github/workflows/build_cmake.yml +++ b/.github/workflows/build_cmake.yml @@ -69,11 +69,11 @@ jobs: - name: Download MikTex (Windows) run: - $wc = New-Object System.Net.WebClient - $maxAttempts=5 - $attemptCount=0 + $wc = New-Object System.Net.WebClient; + $maxAttempts=5; + $attemptCount=0; Do { - $attemptCount++ + $attemptCount++; $wc.DownloadFile("https://miktex.org/download/win/miktexsetup-x64.zip","miktexsetup-x64.zip") } while (((Test-Path "miktexsetup-x64.zip") -eq $false) -and ($attemptCount -le $maxAttempts)) shell: pwsh |