Hi all,
We were just updating our management tools for Cryosparc 3.0.1 and noticed the change in cryosparcm createuser requiring --firstname --lastname separately.
This is shown in the online docs:
Createuser docs are ok, but updateuser will also take separate firstname / lastname flags
The cli help for these commands does not work for me i.e.
cryosparcm updateuser --help
Improper usage.
However, the cryosoparcm code shows, the updateuser is parsing firstname twice (ca line 531):
--firstname)
firstname="$2"
shift # past arg
shift # past val
;;
--firstname)
firstname="$2"
shift # past arg
shift # past val
;;
Best,
Erich