Skip to content

Commit 732af5f

Browse files
committed
fixes
1 parent 85f6e79 commit 732af5f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

install.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -361,12 +361,12 @@ install_zsh() {
361361
if [ ! -e $root/.venv ]; then
362362
echo "Setting up virtual environment ..."
363363
python3 -m venv $root/.venv
364-
$root/.venv/bin/pip install --upgrade setuptools pip
364+
$root/.venv/bin/pip install --quiet --upgrade setuptools pip
365365
echo
366366
fi
367367
if [ -e $root/requirements.txt ]; then
368368
echo "Installing Python requirements ..."
369-
$root/.venv/bin/pip install --upgrade -r $root/requirements.txt
369+
$root/.venv/bin/pip install --quiet --upgrade -r $root/requirements.txt
370370
echo
371371
fi
372372

@@ -425,12 +425,12 @@ install xorg Xorg
425425
install xdg xdg-open
426426
install zsh
427427

428+
# dropbox doesn't have a specific binary we can look for in $PATH
428429
[ -e ~/.dropbox-dist ] && install_dropbox
429430

430431
echo
431432

432433

433-
# look for broken symlinks
434434
echo "Looking for broken symlinks..."
435435
find $configs -xtype l
436436
find $scripts -xtype l

0 commit comments

Comments
 (0)