summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build_tools/bin/bld_resource.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/build_tools/bin/bld_resource.py b/build_tools/bin/bld_resource.py
index aaba889..0fa8309 100644
--- a/build_tools/bin/bld_resource.py
+++ b/build_tools/bin/bld_resource.py
@@ -1924,7 +1924,9 @@ class Ui_MainWindow(object):
dir_list = self.find_pkgdir_ABS()
for item,dir in dir_list:
cmd = "%s" %(self.all_settings['konsole'])
- cmd = cmd + " " + " " + dir
+
+ cmd += dir
+ print cmd
cmd = cmd,
thread.start_new_thread(self.runcmd_thread, cmd)
@@ -2045,7 +2047,7 @@ class Ui_MainWindow(object):
dir_list = self.find_pkgdir()
for item,dir in dir_list:
cmd = "%s" %(self.all_settings['konsole'])
- cmd = cmd + " " + " " + dir
+ cmd += dir
cmd = cmd,
thread.start_new_thread(self.runcmd_thread, cmd)