Quellcode durchsuchen

added folder creation in build_full_frontend.sh

Skylsmoi vor 7 Jahren
Ursprung
Commit
d874757025
1 geänderte Dateien mit 5 neuen und 0 gelöschten Zeilen
  1. 5 0
      build_full_frontend.sh

+ 5 - 0
build_full_frontend.sh Datei anzeigen

13
 # get the new sources
13
 # get the new sources
14
 git pull origin develop
14
 git pull origin develop
15
 
15
 
16
+# create folder frontend/dist/app/ if no exists
17
+if [ ! -d "frontend/dist/app/" ]; then
18
+  mkdir frontend/dist/app/
19
+fi
20
+
16
 # Tracim Lib
21
 # Tracim Lib
17
 (
22
 (
18
   log "build frontend_lib"
23
   log "build frontend_lib"