Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
busma13 committed Aug 1, 2024
1 parent 2d83ea5 commit 42f8451
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bin/fetch-github-release
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ import path from 'node:path';
import fs from 'node:fs';
import { fileURLToPath } from "node:url";

const __filename = fileURLToPath(import.meta.url);
import(path.join(path.dirname(fs.realpathSync(__filename)), '../dist/src/cli.js'));
const filename = fileURLToPath(import.meta.url);
import(path.join(path.dirname(fs.realpathSync(filename)), '../dist/src/cli.js'));
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { downloadRelease } from './downloadRelease.js';
import { HTTPError } from './getReleases';
import { HTTPError } from './getReleases.js';

export { downloadRelease, HTTPError };

0 comments on commit 42f8451

Please sign in to comment.