mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-24 14:51:03 +01:00
remove error debug not needed
This commit is contained in:
parent
d10429d5f3
commit
bb082a2c3d
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue