Update run.sh

This commit is contained in:
Alexandre
2021-02-08 13:53:20 +01:00
committed by GitHub
parent 5553284a85
commit 5287d933d5

View File

@@ -1,13 +1,14 @@
#!/usr/bin/with-contenv bashio
bashio::log.info "Checking status of referenced repositoriess..."
VERBOSE=$(bashio::config 'verbose')
#Defining github value
LOGINFO="... github authentification" &if [ $VERBOSE = true ]; then bashio::log.info $LOGINFO; fi
#Defining github values
bashio::log.info "... github authentification"
GITUSER=$(bashio::config 'gituser')
GITPASS=$(bashio::config 'gitpass')
GITMAIL=$(bashio::config 'gitmail')
VERBOSE=$(bashio::config 'verbose')
git config --system http.sslVerify false
git config --system credential.helper 'cache --timeout 7200'
git config --system user.name ${GITUSER}