Azure / cyclecloud-slurm

Azure CycleCloud project to enable users to create, configure, and use Slurm HPC clusters.
MIT License
59 stars 43 forks source link

Azslurm path is echoed with each autocomplete command #258

Closed anhoward closed 4 months ago

anhoward commented 5 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

aditigaur4 commented 5 months ago

https://github.com/Azure/cyclecloud-slurm/pull/265

aditigaur4 commented 4 months ago

This is merged