-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbuild.sh
executable file
·37 lines (36 loc) · 1.72 KB
/
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
29
30
31
32
33
34
35
36
37
#!/bin/sh
echo ""
if [ -n "$1" ]
then
profile=$1
else
profile="default"
fi
if test -d "recipes/$profile"
then
cd recipes/$profile
if test ! -d "../../templates/$profile"
then
ln -s ../../recipes/$profile/build ../../app/templates/$profile
fi
sh ./compile.sh
cd ../../app
touch profile
echo 'profile :' $profile > profile
echo 'date : "'$(date -R)'"'>> profile
cp templates/$profile/barra-brasil.js static/ #Copiando enquanto a barra é estática.
cp templates/$profile/barra-brasil-en.js static/ #Copiando enquanto a barra é estática.
cp templates/$profile/barra-brasil-fr.js static/ #Copiando enquanto a barra é estática.
cp templates/$profile/barra-brasil-es.js static/ #Copiando enquanto a barra é estática.
cp templates/$profile/barra-brasil.js ../docker/public_html/barra.js.pt-br #Copiando enquanto a barra é estática.
cp templates/$profile/barra-brasil-en.js ../docker/public_html/barra.js.en #Copiando enquanto a barra é estática.
cp templates/$profile/barra-brasil-fr.js ../docker/public_html/barra.js.fr #Copiando enquanto a barra é estática.
cp templates/$profile/barra-brasil-es.js ../docker/public_html/barra.js.es #Copiando enquanto a barra é estática.
cp templates/exemplo.html ../docker/public_html/index.html #Copiando enquanto a barra é estática.
cp static/opensans-bold.woff ../docker/public_html/static/ #Copiando enquanto a barra é estática.
cp static/jquery-2.1.3.min.js ../docker/public_html/static/jquery.js #Copiando enquanto a barra é estática.
cp static/vlibras.gif ../docker/public_html/imagens/vlibras.gif #Copiando enquanto a barra é estática.
echo "Copiado"
else
echo "Erro. O profile '$profile' não existe."
fi