Hi, I'm using execline on alpine edge (synced today), i noticed that `unexport` and `importas -u` don't remove the variable from the environment. For example:
$ env -i /bin/export var hi /bin/unexport var /bin/printenv var=hi $ env -i /bin/export var hi /bin/importas -u var var /bin/printenv var=hi $ Both cases should return nothing since the variable should be removed. `emptyenv` works as expected though: $ env -i /bin/export var hi /bin/emptyenv /bin/printenv $ Does anyone have this issue too? Cheers, Alex
