Browse Source

- 'cleanup' angepasst: keine Fehler bei den manifest.

cajuskamer 6 years ago
parent
commit
731af0523a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      docker-build.py

+ 2 - 2
docker-build.py

@@ -125,8 +125,8 @@ for target in targets:
     with open('%s/%s_cleanup.log' % (logdir, target), 'w') as log:
         print('Cleaning up...', end=''); stdout.flush()
     with open('%s/%s_cleanup.log' % (logdir, target), 'w') as log:
-        rc = call('make dirclean V=s', stdout=log, stderr=log, shell=True) # clean all
-        # rc = call('make clean GLUON_TARGET=%s V=s' % (target), stdout=log, stderr=log, shell=True) # clean target specific 
+        # rc = call('make dirclean V=s', stdout=log, stderr=log, shell=True) # clean all
+        rc = call('make clean GLUON_TARGET=%s V=s' % (target), stdout=log, stderr=log, shell=True) # clean target specific 
     if rc == 0:
         print('OK')
     else: