From: Steinar H. Gunderson Date: Tue, 15 Nov 2016 18:11:18 +0000 (+0100) Subject: Fix umask; it messed up the history. X-Git-Url: https://git.sesse.net/?p=remoteglot;a=commitdiff_plain;h=10f0f0a57c2f786e1cb17fb2fec88a430c0fc0c6 Fix umask; it messed up the history. --- diff --git a/remoteglot.pl b/remoteglot.pl index 163e166..9cbf820 100755 --- a/remoteglot.pl +++ b/remoteglot.pl @@ -67,7 +67,7 @@ select(TBLOG); $| = 1; select(STDOUT); -umask 0027; # analysis.json should not be served to users. +umask 0022; # analysis.json should not be served to users. # open the chess engine my $engine = open_engine($remoteglotconf::engine_cmdline, 'E1', sub { handle_uci(@_, 1); });