Skip to content

Commit 661cb3c

Browse files
committed
add info when using these options
1 parent e865b5e commit 661cb3c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

build-ffmpeg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1128,13 +1128,16 @@ echo ""
11281128
INSTALL_NOW=0
11291129
if [[ "$AUTOINSTALL" == "yes" ]]; then
11301130
INSTALL_NOW=1
1131+
echo "Automatically installing these binaries because the --auto-install option was used or AUTOINSTALL=yes was run."
11311132
elif [[ ! "$SKIPINSTALL" == "yes" ]]; then
11321133
read -r -p "Install these binaries to your $INSTALL_FOLDER folder? Existing binaries will be replaced. [Y/n] " response
11331134
case $response in
11341135
"" | [yY][eE][sS] | [yY])
11351136
INSTALL_NOW=1
11361137
;;
11371138
esac
1139+
else
1140+
echo "Skipping install of these binaries because the --skip-install option was used or SKIPINSTALL=yes was run."
11381141
fi
11391142

11401143
if [ "$INSTALL_NOW" = 1 ]; then

0 commit comments

Comments
 (0)