Skip to content

Commit

Permalink
Change macOS bin dir.
Browse files Browse the repository at this point in the history
  • Loading branch information
q-uint committed Apr 28, 2024
1 parent 49733f0 commit 6a16a27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function run() {
let pocketicBuild = 'linux';
// Alter params if running on macOS.
if (os_1.default.platform() === 'darwin') {
bin = '/usr/local/share';
bin = '/Users/runner/bin';
vesselBuild = 'macos';
pocketicBuild = 'darwin';
}
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export async function run() {

// Alter params if running on macOS.
if (os.platform() === 'darwin') {
bin = '/usr/local/share';
bin = '/Users/runner/bin';
vesselBuild = 'macos';
pocketicBuild = 'darwin';
}
Expand Down

0 comments on commit 6a16a27

Please sign in to comment.