Azure / cyclecloud-slurm

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

Azslurm path is echoed with each autocomplete command #258

Open anhoward opened 1 month ago

anhoward commented 1 month 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 2 weeks ago

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