1
0

create-collection-add-model.sh 232 B

12345678
  1. #!/usr/bin/env bash
  2. COLLECTION_SLUG=$(python ./create_collection.py --return-slug)
  3. echo "Created collection: $COLLECTION_SLUG"
  4. # Use it in the next command
  5. python add_model_to_collection.py "$COLLECTION_SLUG" "username/my-model"