Merge pull request #2726 from petruknw/master

aurral: v1.76.17-2 - fix entrypoint, restore mkdirs, clean up build.json
This commit is contained in:
Alexandre
2026-05-21 15:59:51 +02:00
committed by GitHub
3 changed files with 6 additions and 8 deletions

View File

@@ -2,6 +2,11 @@
- Minor bugs fixed
# Changelog
## 1.76.17-2
- Fix entrypoint: use HA-injected env vars instead of bashio (not available in upstream image)
- Restore mkdir for persistent data/download directories
## 1.76.17-1
- Add `weekly_flow_folder` option (configurable subfolder for weekly flow files)

View File

@@ -1,5 +1,5 @@
name: Aurral
version: "1.76.17-1"
version: "1.76.17-2"
slug: aurral
description: >-
Self-hosted music discovery, request management, flows, and playlist

View File

@@ -1,13 +1,6 @@
#!/bin/sh
set -e
DOWNLOAD_FOLDER=$(bashio::config 'download_folder')
WEEKLY_FLOW_SUFFIX=$(bashio::config 'weekly_flow_folder')
export DOWNLOAD_FOLDER
export WEEKLY_FLOW_FOLDER="${DOWNLOAD_FOLDER}/${WEEKLY_FLOW_SUFFIX}"
# Create persistent directories in HA volumes
mkdir -p /config/data
mkdir -p "${DOWNLOAD_FOLDER}"
mkdir -p "${WEEKLY_FLOW_FOLDER}"