Use the sudo VAR=... syntax instead of using -E

This commit is contained in:
Andrea Cardaci
2020-06-10 22:56:05 +02:00
parent b92d9e0ec2
commit 9aa7ec842e
3 changed files with 3 additions and 3 deletions

View File

@@ -13,5 +13,5 @@ functions:
echo '#!/bin/sh' > $TF/groff
echo '/bin/sh' >> $TF/groff
chmod +x $TF/groff
sudo -E GROFF_BIN_PATH=$TF nroff
sudo GROFF_BIN_PATH=$TF nroff
---