This repository has been archived on 2025-01-25. You can view files and clone it, but cannot push or open issues or pull requests.
2022-03-16 12:35:43 +01:00

11 lines
458 B
Bash

#!/usr/bin/with-contenv bashio
# ==============================================================================
# Home Assistant Community Add-on: Mopidy
# Ensures needed folder exists.
# ==============================================================================
readonly MEDIA_DIR="/share/mopidy/media"
if ! bashio::fs.directory_exists "${MEDIA_DIR}"; then
mkdir -p "${MEDIA_DIR}" || bashio::exit.nok "Could not create media folder: ${MEDIA_DIR}"
fi