Skip to content

Commit 3d7a240

Browse files
committed
bootstrap: correctly display files copied in build.py
1 parent 0c25898 commit 3d7a240

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bootstrap/common/build.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,6 @@ def make_tar(tfn, source_dirs, ignore_path=[]):
224224
def copy_to_assets(source_dirs, ignore_path=[]):
225225
print 'copy_to_assets()', source_dirs, ignore_path
226226
for fn, afn in iterate_sources(source_dirs, ignore_path):
227-
print '{}: {}'.format(fn, afn)
228-
229227
if afn.endswith(".so"):
230228
# copy to libs instead
231229
afn_dirname = dirname(afn)
@@ -239,6 +237,8 @@ def copy_to_assets(source_dirs, ignore_path=[]):
239237
dest_dir = dirname(dest_fn)
240238
if not exists(dest_dir):
241239
os.makedirs(dest_dir)
240+
241+
print '{}: {}'.format(fn, dest_fn)
242242
shutil.copy(fn, dest_fn)
243243

244244

0 commit comments

Comments
 (0)