diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2022-12-09 09:14:10 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2022-12-09 09:14:10 -0300 |
commit | c0c8452b41c4f8b07aeeba3c2809f60e554efcd7 (patch) | |
tree | e6fdf94731ab4dbbc0ee1051ad6d54fad4f9444f | |
parent | b270444425fa05bc100826deb1250339e1a31434 (diff) | |
download | trashman-c0c8452b41c4f8b07aeeba3c2809f60e554efcd7.tar.gz trashman-c0c8452b41c4f8b07aeeba3c2809f60e554efcd7.tar.bz2 |
Fix: syntax
-rw-r--r-- | share/trashman/trashman/debian | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/trashman/trashman/debian b/share/trashman/trashman/debian index 4b9530f..db737ff 100644 --- a/share/trashman/trashman/debian +++ b/share/trashman/trashman/debian @@ -64,7 +64,7 @@ trashman_install_apt_key() { # Determine Debian major version name trashman_debian_major_version_name() { - if [ ! -e "/etc/debian_version" ]; + if [ ! -e "/etc/debian_version" ]; then return 1 fi |