diff options
author | Luke Bratch <luke@bratch.co.uk> | 2018-01-09 10:29:28 +0000 |
---|---|---|
committer | Luke Bratch <luke@bratch.co.uk> | 2018-01-09 10:29:28 +0000 |
commit | cdef569d0555fdfbd3354ebc8a95fe404a381d08 (patch) | |
tree | 46cfd5544064f32dbf7a50c37366fd7226bfdefb | |
parent | 06d6a0dfe38e26964a42721402c265f06833fe73 (diff) |
Only try to run layman if the command seems to exist
-rwxr-xr-x | portage-update.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/portage-update.sh b/portage-update.sh index 023d46e..17c68b6 100755 --- a/portage-update.sh +++ b/portage-update.sh @@ -40,7 +40,10 @@ emerge --sync || exit 1 # Sync Layman repos echo 'layman -S' -layman -S || exit 1 +# Only try to run layman if the command seems to exist +if command -v layman > /dev/null; then + layman -S || exit 1 +fi # Check to see if there's any news, unless skipped if [ -z ${SKIP_NEWS+x} ] && [ $(eselect news count new) -ne "0" ]; then |