mirror of
https://github.com/DrewThomasson/ebook2audiobook.git
synced 2026-01-08 21:38:12 -05:00
10 lines
242 B
Bash
Executable File
10 lines
242 B
Bash
Executable File
#!/bin/zsh
|
|
# Prevent Conda from initializing
|
|
export CONDA_SHLVL=0
|
|
unset CONDA_PREFIX
|
|
unset CONDA_DEFAULT_ENV
|
|
# Change directory to the location of the launcher
|
|
cd "$(dirname "$0")"
|
|
# Execute the ebook2audiobook.sh script
|
|
./ebook2audiobook.sh
|