1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-21 01:36:16 +02:00

change output when creating binaries directory

was:
Creating binaries

is now:
Creating directory "binaries"
This commit is contained in:
lethliel 2018-03-13 15:00:46 +01:00
parent 8cb0246c10
commit e042c585c0

View File

@ -7076,7 +7076,7 @@ Please submit there instead, or use --nodevelproject to force direct submission.
# Set binary target directory and create if not existing
target_dir = os.path.normpath(opts.destdir)
if not os.path.isdir(target_dir):
print('Creating %s' % target_dir)
print('Creating directory "%s"' % target_dir)
os.makedirs(target_dir, 0o755)
for arch in arches: