소스 검색

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

cajuskamer 6 년 전
부모
커밋
731af0523a
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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: