Merge pull request #24 from bruvv:whoogle-fix

Beta
This commit is contained in:
bruvv
2022-01-03 09:42:31 +01:00
committed by GitHub
77 changed files with 122 additions and 103 deletions

View File

@@ -1,4 +1,4 @@
#!/usr/bin/with-contenv bashio
#!/bin/bash
# If dockerfile failed install manually
if [ -e "/ENVFILE" ]; then
echo "Executing script"

View File

@@ -1,4 +1,4 @@
#!/usr/bin/with-contenv bashio
#!/bin/bash
if [ ! -d /share/storage/movies ]; then
echo "Creating /share/storage/movies"
@@ -6,6 +6,12 @@ if [ ! -d /share/storage/movies ]; then
chown -R abc:abc /share/storage/movies
fi
if [ ! -d /share/storage/tv ]; then
echo "Creating /share/storage/tv"
mkdir -p /share/storage/tv
chown -R abc:abc /share/storage/tv
fi
if [ ! -d /share/downloads ]; then
echo "Creating /share/downloads"
mkdir -p /share/downloads