Skip to content

Commit 461c41f

Browse files
committed
Changes permissions closes #2978
1 parent a6bb085 commit 461c41f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

app.pl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,11 @@ sub gen_assets {
7676
);
7777
move $temp_css, 'html/css/app.css'
7878
or app->log->warn("Copying CSS failed: $!");
79-
8079
mkdir "html/js" unless -d "html/js";
8180
move $temp_js, 'html/js/app.js'
82-
or app->log->warn("Copying JS failed: $!");
81+
or app->log->warn("Copying JS failed: $!");
82+
chmod 0644, 'html/css/app.css', 'html/js/app.js';
83+
8384
app->log->info('...done');
8485

8586
}

0 commit comments

Comments
 (0)