Skip to content

Commit 4b6a823

Browse files
committed
install: Add log message for install_prereq.
install_prereq doesn't produce any output to the console, but does take a non-trivial amount of time to run, so let the user know that the script is running.
1 parent 629eea4 commit 4b6a823

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

phreaknet.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3974,7 +3974,11 @@ elif [ "$cmd" = "install" ]; then
39743974
if [ "$PAC_MAN" = "apt-get" ]; then
39753975
printf "%s %d" "libvpb1/countrycode string" "$AST_CC" | debconf-set-selections -v
39763976
fi
3977+
3978+
# install_prereq takes a moment, and produces no output, so make it clear that something is happening
3979+
printf "Installing prereqs, this may take a moment... " # No newline, so DONE can conclude on the same line
39773980
./contrib/scripts/install_prereq install
3981+
printf "DONE\n"
39783982

39793983
apply_overlays
39803984

0 commit comments

Comments
 (0)