You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
386 B

2 years ago
  1. #!/bin/bash
  2. ######################################################################
  3. # Custom entrypoint that activate conda before running spleeter.
  4. #
  5. # @author Félix Voituret <fvoituret@deezer.com>
  6. # @version 1.0.0
  7. ######################################################################
  8. # shellcheck disable=1091
  9. . "/opt/conda/etc/profile.d/conda.sh"
  10. conda activate base
  11. spleeter "$@"