Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Feb 6, 2022
1 parent ac98271 commit 304bedb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/runners/cli/launch.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { fileURLToPath } from 'url'

const HANDLER_MAIN_PATH = fileURLToPath(
new URL('./handler/main.js', import.meta.url),
new URL('handler/main.js', import.meta.url),
)

export const launch = function ({ shell }) {
Expand Down
2 changes: 1 addition & 1 deletion src/runners/node/launch.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { version as currentVersion } from 'process'
import { fileURLToPath } from 'url'

const HANDLER_MAIN_PATH = fileURLToPath(
new URL('./handler/main.js', import.meta.url),
new URL('handler/main.js', import.meta.url),
)

// `runnerConfig.node.version` can be used to spawn a different Node.js version
Expand Down

0 comments on commit 304bedb

Please sign in to comment.