Skip to content

Commit

Permalink
Add log message for package install list
Browse files Browse the repository at this point in the history
  • Loading branch information
brwyatt committed Mar 8, 2015
1 parent 7503d45 commit d635232
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/global/installPythonPackages
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ if [ $# -lt 1 ]; then
exit 1
fi

echo -e "\tPython packages to install:\n\t\t$@"

if pip3 --version &>/dev/null; then
pip=pip3
elif pip --version &>/dev/null; then
Expand Down
2 changes: 2 additions & 0 deletions scripts/global/installSystemPackages
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ if [ $# -lt 1 ]; then
exit 1
fi

echo -e "\tSystem packages to install:\n\t\t$@"

if apt-get --version &>/dev/null; then
echo -e "\tRunning apt-get install..."
apt-get install --assume-yes "$@" &>/dev/null
Expand Down

0 comments on commit d635232

Please sign in to comment.