diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2023-12-25 23:11:33 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2023-12-25 23:11:33 -0300 |
commit | ef5fe8de0a5c0523acf547d71ae595b608233508 (patch) | |
tree | ac94ae1214d199732f22266f5a82a96307c95d10 | |
parent | 9154e0551887ded91faa4b2b46a0db91a668e1b6 (diff) | |
download | downloaders-ef5fe8de0a5c0523acf547d71ae595b608233508.tar.gz downloaders-ef5fe8de0a5c0523acf547d71ae595b608233508.tar.bz2 |
Fix: nextcloud-dl: remove sha256 file after unpacking
-rwxr-xr-x | nextcloud-dl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nextcloud-dl b/nextcloud-dl index 94cb931..e096751 100755 --- a/nextcloud-dl +++ b/nextcloud-dl @@ -41,6 +41,7 @@ sha256sum -c nextcloud-$VERSION.tar.bz2.sha256 || exit -1 # Remove package rm nextcloud-$VERSION.tar.bz2 +rm nextcloud-$VERSION.tar.bz2.sha256 # Sync configuration and data chown -R root. nextcloud-$VERSION |