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 fi
## get basic info from SD ## 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 if [ ${bootstrapInfoExists} -eq 1 ]; then
source ${infoFile} source ${infoFile}
fi fi
# get final config if already avaulable # 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 if [ ${configExists} -eq 1 ]; then
source ${configFile} source ${configFile}
setupStep=100 setupStep=100