From 5660a17cadfcbed1a231e1629121a73a0504b9f3 Mon Sep 17 00:00:00 2001 From: Dunkyl <38872099+dunkyl@users.noreply.github.com> Date: Sat, 19 Nov 2022 22:11:10 -0800 Subject: [PATCH] minor update --- build.fsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/build.fsx b/build.fsx index 21779a3..e3bdb82 100644 --- a/build.fsx +++ b/build.fsx @@ -65,11 +65,11 @@ let fetchFFMPEG () = task { let zipFileName = filenameOf releaseURL if File.Exists zipFileName then - printfn " Found existing release." + printfn $" Found existing release at {zipFileName}." else - printfn " Downloading release..." + printfn $" Downloading release {releaseVer}..." do! download releaseURL - printfn " Downloaded release." + printfn " Downloaded release!" // checksum let sha_downloaded = @@ -170,6 +170,8 @@ let genObjs = let genObjsStr = String.Join(" ", genObjs) +printfn "Light..." + // genObjsStr includes the product.wixobj // -b FFMPEG -b FFMPEG/bin -b FFMPEG/presets -b FFMPEG/doc light $"-ext WixUIExtension -reusecab -cc cabinets -cultures:en-us -loc en-us.wxl -o {product}.msi {genObjsStr} "