Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
neil committed May 23, 2021
1 parent caf2067 commit 3dcbdac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ async function download() {
await exec.exec("tar -xzf " + path.join(workingDir, "./cf." + ext));
await io.mv("cloudflared", path.join(workingDir, "cloudflared"));
} else if (link === NGROK_MAC) {
await exec.exec("7za e -y " + path.join(workingDir, "./cf." + ext) + " -o " + workingDir);
await exec.exec("7za e -y " + path.join(workingDir, "./cf." + ext) + " -o" + workingDir);
} else {
await exec.exec("unzip " + path.join(workingDir, "./cf." + ext) + " -d " + workingDir);
}
Expand Down

0 comments on commit 3dcbdac

Please sign in to comment.