Compare commits

...

2 commits

Author SHA1 Message Date
a9b798171a rename prestart to init 2025-02-08 23:48:30 +00:00
66a7f5f3bc fix a typo 2025-02-08 03:58:21 +00:00
3 changed files with 3 additions and 3 deletions

View file

@ -2,8 +2,8 @@
set -e
# If there's a prestart.sh script in the /app directory, run it before starting
PRE_START_PATH=/app/prestart.sh
# If there's a init.sh script in the /app directory, run it before starting
PRE_START_PATH=/app/init.sh
if [ -f $PRE_START_PATH ] ; then
. "$PRE_START_PATH"
else

View file

@ -90,7 +90,7 @@ async def now(ctx):
playhead = await query_playhead()
stream_name = playhead['name']
stream_prio = playhead['prio']
await ctx.channel.send(f'Now playing {stream_name})')
await ctx.channel.send(f'Now playing {stream_name}')
@bot.command(name='rec', help='Start the recorder')
@has_role(boss_role_name)