mirror of
https://github.com/claude-did-this/claude-hub.git
synced 2026-02-14 19:30:02 +01:00
8 lines
186 B
Bash
Executable File
8 lines
186 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Ensure logs directory exists and has proper permissions
|
|
mkdir -p /app/logs
|
|
chmod 777 /app/logs
|
|
|
|
# Switch to claudeuser and execute the main command
|
|
exec gosu claudeuser "$@" |