mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-10 09:51:02 +01:00
11 lines
255 B
Bash
11 lines
255 B
Bash
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
|
|
slug="tandoor_recipes"
|
|
|
|
if [ ! -d /config/addons_config/$slug ]; then
|
|
echo "Creating /config/addons_config/$slug"
|
|
mkdir -p /config/addons_config/$slug
|
|
fi
|
|
chmod -R 755 /config/addons_config/$slug
|