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

@@ -15,5 +15,5 @@ functions:
sudo:
- code: |
LFILE=file_to_write
echo "data" | sudo -E dd of=$LFILE
echo "data" | sudo dd of=$LFILE
---