Fix Bug: shell's if error

Brightcells 8 ans auparavant
Parent
Commettre
4a11e70296
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      startup.sh

+ 1 - 1
startup.sh

@@ -22,7 +22,7 @@ if [ "$oldversion" != "$version" ] && [ "$deldb" = "true" ]; then
22 22
 fi
23 23
 
24 24
 # Start Server
25
-if [ ! -d "/ramfs/"]; then
25
+if [ ! -d "/ramfs/" ]; then
26 26
     nohup python main.py --port=8002 &>/ramfs/minipai2.log &
27 27
 else
28 28
     nohup python main.py --port=8002 &>/tmp/minipai2.log &