mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
build: Fix a print statement when repackaging GStreamer (#32932)
I neglected to put make a string a formatted string, which means that the variable won't be included in the output properly. Signed-off-by: Martin Robinson <mrobinson@igalia.com>
This commit is contained in:
parent
10b06f0129
commit
45aa296b26
1 changed files with 1 additions and 1 deletions
|
@ -272,7 +272,7 @@ def package_gstreamer_dylibs(binary_path: str, library_target_directory: str, cr
|
||||||
return True
|
return True
|
||||||
|
|
||||||
if os.path.exists(library_target_directory):
|
if os.path.exists(library_target_directory):
|
||||||
print(" • Packaged GStreamer is out of date. Rebuilding into {library_target_directory}")
|
print(f" • Packaged GStreamer is out of date. Rebuilding into {library_target_directory}")
|
||||||
shutil.rmtree(library_target_directory)
|
shutil.rmtree(library_target_directory)
|
||||||
else:
|
else:
|
||||||
print(f" • Packaging GStreamer into {library_target_directory}")
|
print(f" • Packaging GStreamer into {library_target_directory}")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue