diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-12-31 17:17:26 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-12-31 17:17:26 -0300 |
commit | f59ad63ec47b82282dffe5237542a66a69f0db5e (patch) | |
tree | 1584f9c09d95e6b83312bd837fbe611d93d15d38 | |
parent | 6d8a50b8549c7dd3cf2496e759353b203ef76462 (diff) | |
download | downloaders-f59ad63ec47b82282dffe5237542a66a69f0db5e.tar.gz downloaders-f59ad63ec47b82282dffe5237542a66a69f0db5e.tar.bz2 |
Fix: postfixadmin-dl: major update and fixes (1)
-rwxr-xr-x | postfixadmin-dl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/postfixadmin-dl b/postfixadmin-dl index 502e59d..5d05e80 100755 --- a/postfixadmin-dl +++ b/postfixadmin-dl @@ -42,8 +42,8 @@ mkdir postfixadmin-$VERSION || exit 1 tar xvf postfixadmin-$VERSION.tar.gz -C postfixadmin-$VERSION --strip-components=1 || exit 1 # Remove package -rm postfixadmin-$VERSION.tar.gz || exit 1 -rm postfixadmin-$VERSION.tar.gz.asc || exit 1 +rm postfixadmin-$VERSION.tar.gz || exit 1 +#rm postfixadmin-$VERSION.tar.gz.asc || exit 1 # Sync configuration chown -R root: postfixadmin-$VERSION || exit 1 |