Skip to content

Commit aa481e8

Browse files
committed
display the full version@build_type during install
1 parent 49fe8a5 commit aa481e8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ffmpeg_downloader/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,14 +224,14 @@ def print_no_need():
224224
return
225225

226226
if current_version is not None:
227-
curr_ver_spec = compose_version_spec(current_version)
227+
curr_ver_spec = compose_version_spec(current_version, current_build_type)
228228
print("Attempting uninstall existing ffmpeg binaries")
229229
print(f" Found existing FFmpeg installation: {curr_ver_spec}")
230230
print(f" Uninstalling {curr_ver_spec}:")
231231
ffdl.remove()
232232
print(f" Successfully uninstalled {curr_ver_spec}")
233233

234-
print(f"Installing collected FFmpeg binaries: {build.version}")
234+
print(f"Installing collected FFmpeg binaries: {ver_spec}")
235235

236236
ffdl.install(*dstpaths, progress=InstallProgress)
237237

0 commit comments

Comments
 (0)