Skip to content

Commit

Permalink
chore: remove unused exists function (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
nbbeeken authored Jun 5, 2024
1 parent 4292689 commit f7ae840
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
9 changes: 0 additions & 9 deletions .github/scripts/libmongocrypt.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,6 @@ function resolveRoot(...paths) {
return path.resolve(__dirname, '..', '..', ...paths);
}

async function exists(fsPath) {
try {
await fs.access(fsPath);
return true;
} catch {
return false;
}
}

async function parseArguments() {
const pkg = JSON.parse(await fs.readFile(resolveRoot('package.json'), 'utf8'));

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:

collect:
needs: [host_builds, container_builds]
runs-on: ubunutu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4

Expand Down

0 comments on commit f7ae840

Please sign in to comment.