Added some workaround for hatchfill extension and write permissions
This commit is contained in:
parent
2fbc1b54bf
commit
e86e1a0504
@ -2165,12 +2165,14 @@ def inkscape_run_debug():
|
|||||||
import os
|
import os
|
||||||
import datetime
|
import datetime
|
||||||
import shutil
|
import shutil
|
||||||
|
import tempfile
|
||||||
|
|
||||||
# If we aren't calling this from our own script.
|
# If we aren't calling this from our own script.
|
||||||
if os.environ.get("DEBUG_RECURSION", "0") == "1":
|
if os.environ.get("DEBUG_RECURSION", "0") == "1":
|
||||||
return
|
return
|
||||||
script_path = os.path.abspath(sys.argv[0])
|
script_path = os.path.abspath(sys.argv[0])
|
||||||
debug_dir = os.path.join(os.path.dirname(script_path), "debug")
|
#debug_dir = os.path.join(os.path.dirname(script_path), "debug")
|
||||||
|
debug_dir = tempfile.gettempdir()
|
||||||
os.makedirs(debug_dir, exist_ok=True)
|
os.makedirs(debug_dir, exist_ok=True)
|
||||||
base_name, _ = os.path.splitext(os.path.basename(script_path))
|
base_name, _ = os.path.splitext(os.path.basename(script_path))
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user