forked from cisagov/cset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy_csetac.sh
80 lines (63 loc) · 1.14 KB
/
deploy_csetac.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/bin/bash
shopt extglob dotglob nullglob
DEPLOY_DIR='//csetac.inl.gov/csetac'
copyJS() {
echo 'copying .js'
cp dist/*.js $DEPLOY_DIR
echo 'finished .js'
}
copyOther() {
echo 'copying other'
cp dist/*.html $DEPLOY_DIR
echo 'finished .html (other)'
cp dist/*.ico $DEPLOY_DIR
echo 'finished .ico (other)'
cp dist/*.css $DEPLOY_DIR
echo 'finished .css (other)'
cp dist/web.config $DEPLOY_DIR
echo 'finished other'
}
copyEOT() {
echo 'copying .eot'
cp dist/*.eot $DEPLOY_DIR
echo 'finished .eot'
}
copySVG() {
echo 'copying .svg'
cp dist/*.svg $DEPLOY_DIR
echo 'finished .svg'
}
copyTTF() {
echo 'copying .ttf'
cp dist/*.ttf $DEPLOY_DIR
echo 'finished .ttf'
}
copyWOFF() {
echo 'copying .woff'
cp dist/*.woff $DEPLOY_DIR
cp dist/*.woff2 $DEPLOY_DIR
echo 'finished .woff'
}
copyBin() {
echo 'copying bin'
cp dist/bin/*.dll $DEPLOY_DIR/bin
echo 'finished bin'
}
copyLucene() {
echo 'copying Lucene'
cp dist/Lucene/*.* $DEPLOY_DIR/Lucene
echo 'finished Lucene'
}
echo 'Starting copy to' $DEPLOY_DIR
date
copyJS &
copyOther &
copyEOT &
copySVG &
copyTTF &
copyWOFF &
copyBin &
# copyLucene &
wait
echo 'Copy complete'
date