mirror of
https://github.com/louislam/its-mytabs.git
synced 2026-01-19 11:18:32 -05:00
8 lines
156 B
Bash
8 lines
156 B
Bash
#!/bin/sh
|
|
|
|
# Change the user/group of /app/data to match deno user
|
|
chown -R deno:deno /app/data
|
|
|
|
# Execute the command as the deno user
|
|
exec gosu deno "$@"
|