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 fed6b11 commit c5c459aCopy full SHA for c5c459a
tools/sync/command.py
@@ -166,7 +166,10 @@ def close(self):
166
output_thread = OutputThread()
167
try:
168
start_time = time.time()
169
- self.logger.debug("working directory = {}".format(os.getcwd()))
+ try:
170
+ self.logger.debug("working directory = {}".format(os.getcwd()))
171
+ except PermissionError:
172
+ pass
173
self.logger.debug("command = {}".format(self.cmd))
174
if self.env_vars:
175
my_env = os.environ.copy()
0 commit comments