Closed anhoward closed 4 months ago
/etc/profile.d/azslurm_autocomplete.sh has a bad redirect that echoes the path of azslurm every time autocomplete is evaluated.
which azslurm 2>/dev/null || export PATH=$PATH:/root/bin
Should actually be
which azslurm > /dev/null 2>&1 || export PATH=$PATH:/root/bin
https://github.com/Azure/cyclecloud-slurm/pull/265
This is merged
/etc/profile.d/azslurm_autocomplete.sh has a bad redirect that echoes the path of azslurm every time autocomplete is evaluated.
which azslurm 2>/dev/null || export PATH=$PATH:/root/bin
Should actually be
which azslurm > /dev/null 2>&1 || export PATH=$PATH:/root/bin