mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-11-19 10:28:58 +01:00
remove error debug not needed
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user