Skip to content

Commit

Permalink
Fix format CI step (#12)
Browse files Browse the repository at this point in the history
* Fix format CI step

* format
  • Loading branch information
davbeck authored Jul 8, 2024
1 parent 967747b commit 13458b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: irgaly/setup-mint@v1
- run: echo "$HOME/bin" >> $GITHUB_PATH

- run: bin/format

Expand Down
4 changes: 2 additions & 2 deletions Tests/GlobTests/Pattern+fnmatchTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ private let PERIOD = FNM_PERIOD
private let NOESCAPE = FNM_NOESCAPE
private let NOMATCH = FNM_NOMATCH
#if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
private let LEADING_DIR = FNM_LEADING_DIR
private let LEADING_DIR = FNM_LEADING_DIR
#else
private let LEADING_DIR = (1 as Int32) << 29
private let LEADING_DIR = (1 as Int32) << 29
#endif
private let EXTMATCH = (1 as Int32) << 30 // FNM_EXTMATCH

Expand Down

0 comments on commit 13458b7

Please sign in to comment.