Skip to content

Commit

Permalink
change installation path to GITHUB_WORKSPACE (projectdiscovery#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
dogancanbakir authored Nov 2, 2023
1 parent 8bb6f43 commit 79e0c00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/installer.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export async function downloadAndInstall(selectedVersion) {
throw new Error(`Unable to download Nuclei from ${url}.`);
}

const installDir = await tc.extractZip(downloadDir);
const installDir = await tc.extractZip(downloadDir, process.env.GITHUB_WORKSPACE);
if (installDir == null) {
throw new Error("Unable to extract Nuclei.");
}
Expand Down

0 comments on commit 79e0c00

Please sign in to comment.