Skip to content

Commit

Permalink
fix: make execubale
Browse files Browse the repository at this point in the history
  • Loading branch information
ronnnnn committed Aug 25, 2024
1 parent 8fd4830 commit 37b9f8a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -63847,9 +63847,9 @@ async function installFlutterGen(version, cacheEnabled, cacheKey, cachePath) {
}
async function makeExecutable(installedPath) {
const fluttergenPath = join(installedPath, "fluttergen");
chmodSync(fluttergenPath, "a+x");
chmodSync(fluttergenPath, 755);
core2.addPath(installedPath);
}
run();

//# debugId=BACA1DFBD8BCC8C464756E2164756E21
//# debugId=53DD2B6A75EC271564756E2164756E21
6 changes: 3 additions & 3 deletions dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ async function installFlutterGen(

async function makeExecutable(installedPath: string): Promise<void> {
const fluttergenPath = join(installedPath, 'fluttergen');
chmodSync(fluttergenPath, 'a+x');
chmodSync(fluttergenPath, 755);
addPath(installedPath);
}

Expand Down

0 comments on commit 37b9f8a

Please sign in to comment.