Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(IDX): use env -u to unset env var (#3831)
This uses `env` to modify the command's environment instead of handling this in bash with a temporary variable: ```sh $ export FOO=hello $ export BAR=world $ printenv FOO BAR hello world $ env -u BAR printenv FOO BAR hello ```
- Loading branch information