Skip to content
Snippets Groups Projects
Commit 3fb3ae85 authored by Skander Hatira's avatar Skander Hatira
Browse files

trying to fix permissions for resources files

parent bb13ec24
No related branches found
No related tags found
No related merge requests found
Pipeline #51709 skipped
......@@ -36,14 +36,14 @@ module.exports = {
);
},
postStart: async (forgeConfig, options) => {
chmodr(scripts, 0o777, (err) => {
chmodr(scripts, 0o755, (err) => {
if (err) {
console.log("Failed to execute chmod", err);
} else {
console.log("Successful");
}
});
chmodr(resources, 0o777, (err) => {
chmodr(resources, 0o755, (err) => {
if (err) {
console.log("Failed to execute chmod", err);
} else {
......@@ -64,7 +64,7 @@ module.exports = {
"resources/app/.webpack/main/resources/"
);
chmodr(resources, 0o777, (err) => {
chmodr(resources, 0o755, (err) => {
if (err) {
console.log("Failed to execute chmod", err);
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment