mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-25 22:16:29 +01:00
8 lines
234 B
Bash
8 lines
234 B
Bash
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
|
|
if [ -f /config/addons_config/nextcloud/*.sh ]; then
|
|
bashio::log.info "Scripts found in /config/addons_config/nextcloud, executing"
|
|
bash /config/addons_config/nextcloud/*.sh
|
|
fi
|