Skip to content

Commit 193fa24

Browse files
authored
Fixing .setup_dev.sh to only log on errors as it claims to do. (#510)
1 parent 92700d2 commit 193fa24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python-project-template/.setup_dev.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ python -m pip install -e . > /dev/null
3232

3333
echo "Installing developer dependencies in local environment"
3434
python -m pip install -e .'[dev]' > /dev/null
35-
if [ -f docs/requirements.txt ]; then python -m pip install -r docs/requirements.txt; fi
35+
if [ -f docs/requirements.txt ]; then python -m pip install -r docs/requirements.txt > /dev/null; fi
3636

3737
echo "Installing pre-commit"
3838
pre-commit install > /dev/null

0 commit comments

Comments
 (0)