mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 23:53:27 +02:00
Do not check umask for isolated installs
This commit is contained in:
parent
abbf258cfa
commit
3e2276db36
1 changed files with 1 additions and 1 deletions
|
|
@ -721,7 +721,7 @@ def check_umask():
|
|||
|
||||
|
||||
def main(install_dir=None, isolated=False, bin_dir=None, share_dir=None, ignore_umask=False):
|
||||
if not ignore_umask:
|
||||
if not ignore_umask and not isolated:
|
||||
check_umask()
|
||||
run_installer(install_dir, isolated, bin_dir, share_dir)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue