Skip to content

Commit

Permalink
Make copied gradle/kradle files executable.
Browse files Browse the repository at this point in the history
  • Loading branch information
buijs-dev committed Oct 24, 2023
1 parent 1204f11 commit af30a3c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Empty file modified lib/res/kradle-wrapper.jar
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion lib/src/producer/resource.dart
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ extension ResourceCopy on Directory {
).maybeCreate;
final to = pathTo.resolveFile(resource.filename);
from.copySync(to.absolutePath);
Process.runSync("chmod", runInShell: true, ["+x", to.absolutePath]);
Process.runSync("chmod", runInShell: true, ["755", to.absolutePath]);
}
}
}
Expand Down

0 comments on commit af30a3c

Please sign in to comment.