mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-27 16:10:30 +08:00
10 lines
167 B
Bash
Executable File
10 lines
167 B
Bash
Executable File
#!/bin/bash
|
|
parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
|
|
|
|
# switch to bot directory
|
|
pushd "$parent_path/../../discord-bot"
|
|
|
|
python3 __main__.py
|
|
|
|
popd
|