Files
appstore/apps/helium-linuxserver/0.14.5/scripts/init.sh
T
renovate[bot] 1f323354a4 Update linuxserver/helium Docker tag to v0.14.5 (#4679)
Verified: single app/single service image-only version update; local dry-run merge clean; compose config passed; image manifest exists.
2026-07-10 17:33:59 +08:00

14 lines
231 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
paths=(
"${CONFIG_PATH:-./data/config}"
)
mkdir -p "${paths[@]}"
for path in "${paths[@]}"; do
case "$path" in
./*|../*) chown -R 1000:1000 "$path" 2>/dev/null || true ;;
esac
done