We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3771e0 commit fce855eCopy full SHA for fce855e
mergin/client_push.py
@@ -124,7 +124,7 @@ def push_project_async(mc, directory):
124
changes = filter_changes(mc, project_info, changes)
125
mp.log.debug("push changes:\n" + pprint.pformat(changes))
126
127
- tmp_dir = tempfile.TemporaryDirectory(prefix="python-api-client-")
+ tmp_dir = tempfile.TemporaryDirectory(prefix="python-api-client-", ignore_cleanup_errors=True, delete=True)
128
129
# If there are any versioned files (aka .gpkg) that are not updated through a diff,
130
# we need to make a temporary copy somewhere to be sure that we are uploading full content.
0 commit comments