Skip to content

Commit

Permalink
Add PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
nanasess committed May 16, 2024
1 parent ad87db7 commit 8cdc580
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/setup-chromedriver.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ function run() {
console.log(`##setup chromedriver`);
const version = core.getInput("chromedriver-version", { required: false });
const plat = process.platform;
core.addPath('/usr/local/bin');
let arch = "linux";
switch (plat) {
case "win32":
Expand Down
1 change: 1 addition & 0 deletions src/setup-chromedriver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ async function run() {
console.log(`##setup chromedriver`);
const version = core.getInput("chromedriver-version", { required: false });
const plat = process.platform;
core.addPath('/usr/local/bin');
let arch = "linux";
switch (plat) {
case "win32":
Expand Down

0 comments on commit 8cdc580

Please sign in to comment.