mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-07-03 14:42:59 +00:00
11 lines
159 B
Bash
Executable File
11 lines
159 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# Ensure configuration exists
|
|
if [ ! -f "/config/settings.json" ]; then
|
|
cp -a /defaults/settings.json /config/settings.json
|
|
fi
|
|
|
|
exec "$@"
|