remove error debug not needed

This commit is contained in:
rootzoll 2018-12-11 01:27:43 +01:00
parent d10429d5f3
commit bb082a2c3d

View file

@ -52,13 +52,13 @@ while :
fi
## get basic info from SD
bootstrapInfoExists=$(ls ${infoFile} | grep -c '.info')
bootstrapInfoExists=$(ls ${infoFile} 2>/dev/null | grep -c '.info')
if [ ${bootstrapInfoExists} -eq 1 ]; then
source ${infoFile}
fi
# get final config if already avaulable
configExists=$(ls ${configFile} | grep -c '.conf')
configExists=$(ls ${configFile} 2>/dev/null | grep -c '.conf')
if [ ${configExists} -eq 1 ]; then
source ${configFile}
setupStep=100