forked from MTES-MCT/parcours-r
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_build.sh
28 lines (22 loc) · 767 Bytes
/
_build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh
set -ev
# Compilation du module 1
cd ./Supports_formations/m1_socle/
Rscript -e "bookdown::render_book('index.Rmd', 'bookdown::gitbook')"
cd ../..
# Compilation du module 2
cd ./Supports_formations/m2_preparation_donnees/
Rscript -e "bookdown::render_book('index.Rmd', 'bookdown::gitbook')"
cd ../..
# Compilation du module 3
cd ./Supports_formations/m3_stats_desc/
Rscript -e "bookdown::render_book('index.Rmd', 'bookdown::gitbook')"
cd ../..
# Compilation du module 4
cd ./Supports_formations/m4_analyse_donnees/
Rscript -e "bookdown::render_book('index.Rmd', 'bookdown::gitbook')"
cd ../..
# Compilation du module 5
cd ./Supports_formations/m5_valorisation_des_donnees/
Rscript -e "bookdown::render_book('index.Rmd', 'bookdown::gitbook')"
cd ../..