Skip to content

Commit

Permalink
Add printf to pip installs
Browse files Browse the repository at this point in the history
  • Loading branch information
ron.record committed Jun 1, 2024
1 parent b09ba42 commit edebbe6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bin/mppinit
Original file line number Diff line number Diff line change
Expand Up @@ -382,8 +382,10 @@ init_mopidy() {
sudo ${PYTHON} -m pip install --upgrade mopidy >/dev/null 2>&1

for extension in ${EXT_MOPIDY}; do
printf "\n\tInstalling Mopidy extension ${extension}"
${PYTHON} -m pip install --user --upgrade ${extension} >/dev/null 2>&1
done
printf "\n"

# Disable MPD services
systemctl --user is-enabled mpdstats.service >/dev/null 2>&1 && {
Expand Down Expand Up @@ -3130,7 +3132,8 @@ if [ "${PIP}" ]; then
for pkg in unidecode six PySocks asciimatics beautifulsoup4 ${BEETS} \
iniparse pylast beets-describe beets-yearfixer beetcamp beets-xtractor \
PyYAML python-mpd2 requests sacad tmuxp ${YT_DLP} setuptools \
calliope calliope-music bandcamp-downloader scdl flask-cors click; do
calliope-music bandcamp-downloader scdl flask-cors click; do
printf " ${pkg}"
${PYTHON} -m pip install --user --upgrade ${pkg} >/dev/null 2>&1
done
# Install fixed cpe script
Expand Down

0 comments on commit edebbe6

Please sign in to comment.