Skip to content

Commit

Permalink
See if ci works
Browse files Browse the repository at this point in the history
  • Loading branch information
Manel Eljishi authored and Manel Eljishi committed Sep 11, 2024
1 parent 1a03e14 commit cdcd0f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/src/lib/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ import { PLUGIN_CONFIG_PATH, RUNNER_OUTPUT_PATH } from './index.js';
async function createRunnerConfig(runnerScriptPath: string, options: ElixirAuditPluginOptions): Promise<RunnerConfig> {
const {path} = options;

await ensureDirectoryExists(dirname(PLUGIN_CONFIG_PATH));
await ensureDirectoryExists(dirname(RUNNER_OUTPUT_PATH));
await ensureDirectoryExists(dirname(PLUGIN_CONFIG_PATH));
await writeFile(RUNNER_OUTPUT_PATH, JSON.stringify({}));
await writeFile(PLUGIN_CONFIG_PATH, JSON.stringify(path));
await writeFile(RUNNER_OUTPUT_PATH, JSON.stringify({}));

return {
command: `node`,
Expand Down

0 comments on commit cdcd0f7

Please sign in to comment.