Allow to disable progress bar for package/library downloader and uploader

This commit is contained in:
Ivan Kravets
2016-01-24 16:45:04 +02:00
parent a0d3a180e4
commit 0cecd955c5
7 changed files with 27 additions and 12 deletions
+4 -1
View File
@@ -114,7 +114,10 @@ class InoToCPPConverter(object):
def ConvertInoToCpp(env):
def delete_tmpcpp_file(file_):
remove(file_)
try:
remove(file_)
except WindowsError:
pass
ino_nodes = (env.Glob(join("$PROJECTSRC_DIR", "*.ino")) +
env.Glob(join("$PROJECTSRC_DIR", "*.pde")))