Skip to content

Commit f7ae840

Browse files
authored
chore: remove unused exists function (#10)
1 parent 4292689 commit f7ae840

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

.github/scripts/libmongocrypt.mjs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,6 @@ function resolveRoot(...paths) {
1515
return path.resolve(__dirname, '..', '..', ...paths);
1616
}
1717

18-
async function exists(fsPath) {
19-
try {
20-
await fs.access(fsPath);
21-
return true;
22-
} catch {
23-
return false;
24-
}
25-
}
26-
2718
async function parseArguments() {
2819
const pkg = JSON.parse(await fs.readFile(resolveRoot('package.json'), 'utf8'));
2920

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363

6464
collect:
6565
needs: [host_builds, container_builds]
66-
runs-on: ubunutu-latest
66+
runs-on: ubuntu-latest
6767
steps:
6868
- uses: actions/download-artifact@v4
6969

0 commit comments

Comments
 (0)