diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2020-12-05 20:35:31 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2020-12-05 20:35:31 -0300 |
commit | 737a43ad52fcd9125afcc362cf5471be0c91ee8f (patch) | |
tree | 70825c014219e1715f3c6dff4505196a2b0c97a4 | |
parent | 0dd059e208f51feaaa6d0eb055b6fab8e2aaed59 (diff) | |
download | metadot-master.tar.gz metadot-master.tar.bz2 |
-rwxr-xr-x | metadot | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -45,7 +45,7 @@ GIT="/usr/bin/git" # Backup a file function metadot_backup { local file="$DEST/$1" - + if [ -e "$file" ] || [ -h "$file" ]; then local folder="$BACKUPS/`dirname $1`" @@ -123,7 +123,9 @@ function metadot_deps { fi done - LC_ALL=C DEBIAN_FRONTEND=noninteractive sudo apt-get install -y $deps_to_install + if [ ! -z "$deps_to_install" ]; then + LC_ALL=C DEBIAN_FRONTEND=noninteractive sudo apt-get install -y $deps_to_install + fi fi else |