Skip to content

Commit

Permalink
fix: improve ci workflow for font check
Browse files Browse the repository at this point in the history
- fix typo in the conditional statement for font check in ci workflow
  • Loading branch information
falcucci committed Sep 19, 2024
1 parent c5ddeb1 commit 79e0005
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
for font in "${fonts[@]}"; do
ZIP_FILE="${font}${EXTENSION}"
if [[ -f "$font" == "Monaspace" ]]; then
if [[ "$font" == "Monaspace" ]]; then
DOWNLOAD_URL="https://github.com/githubnext/monaspace/releases/download/v1.101/monaspace-v1.101.zip"
else
DOWNLOAD_URL="https://github.com/ryanoasis/nerd-fonts/releases/download/${VERSION}/${ZIP_FILE}"
Expand Down

0 comments on commit 79e0005

Please sign in to comment.