You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks like Config::GitLike, which creates the file, does not have any support for custom permissions:
sysopen(my$fh, "${filename}.lock", O_CREAT|O_EXCL|O_WRONLY)
ordie"Can't open ${filename}.lock for writing: $!\n";
Looks like it would require another attribute on the object, similar to encoding, to specify permissions to pass as the fourth argument to sysopen, something like:
Using
sqitch
1.4.1
from CPAN.I noted that
sqitch.conf
has default read permission for everyone:Apparently the application is working even if permissions are set for only the user, thus:
Shouldn't this be default permission mask since
sqitch.conf
could possibly contain connection passwords?The text was updated successfully, but these errors were encountered: