tcsh-org / tcsh

This is a read-only mirror of the tcsh code repository.
https://www.tcsh.org/
Other
232 stars 42 forks source link

Fix shlvl test in variables.at with bash 5.2 #53

Closed Vogtinator closed 1 year ago

Vogtinator commented 1 year ago

bash 5.2 uses implicit exec for "SHLVL=5 tcsh", which causes it to decrement SHLVL before executing tcsh. Use env to avoid that.

zoulasc commented 1 year ago

Committed thanks!