-
Notifications
You must be signed in to change notification settings - Fork 55
/
get_solc_js.sh
71 lines (61 loc) · 2.32 KB
/
get_solc_js.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
#!/usr/bin/env bash
# 在源码编译得到的WeBASE-Web目录中执行
CURRENT_DIR=$(pwd)
OUTPUT_DIR="./dist/static/js"
####### 参数解析 #######
PARAM_ERROR=1
cmdname=$(basename "$0")
# usage help doc.
usage() {
cat << USAGE >&2
Usage:
$cmdname [-o output_relative_directory]
-o solidity js file download output [relative] directory, ex: dist/static/js is [./dist/static/js]
USAGE
exit $PARAM_ERROR
}
while getopts o:h OPT;do
case ${OPT} in
o)
OUTPUT_DIR="$OPTARG"
;;
h)
usage
exit ${PARAM_ERROR}
;;
\?)
usage
exit ${PARAM_ERROR}
;;
esac
done
get_solc_js(){
STATIC_JS_DIR=${CURRENT_DIR}/${OUTPUT_DIR}
if [ ! -d "${STATIC_JS_DIR}" ];then
echo "Directory not exist: ${STATIC_JS_DIR}"
exit 1
else
echo "Now download all solidity js in ${STATIC_JS_DIR}, if offline, download js file and put them in this dir"
if [[ ! -f "${STATIC_JS_DIR}/v0.4.25.js" ]]; then
curl -#L https://osp-1257653870.cos.ap-guangzhou.myqcloud.com/WeBASE/download/solidity/wasm/v0.4.25.js -o "${STATIC_JS_DIR}"/v0.4.25.js
fi
if [[ ! -f "${STATIC_JS_DIR}/v0.4.24-gm.js" ]]; then
curl -#L https://osp-1257653870.cos.ap-guangzhou.myqcloud.com/WeBASE/download/solidity/wasm/v0.4.25-gm.js -o "${STATIC_JS_DIR}"/v0.4.25-gm.js
fi
if [[ ! -f "${STATIC_JS_DIR}/v0.5.1.js" ]]; then
curl -#L https://osp-1257653870.cos.ap-guangzhou.myqcloud.com/WeBASE/download/solidity/wasm/v0.5.2.js -o "${STATIC_JS_DIR}"/v0.5.2.js
fi
if [[ ! -f "${STATIC_JS_DIR}/v0.5.1-gm.js" ]]; then
curl -#L https://osp-1257653870.cos.ap-guangzhou.myqcloud.com/WeBASE/download/solidity/wasm/v0.5.2-gm.js -o "${STATIC_JS_DIR}"/v0.5.2-gm.js
fi
if [[ ! -f "${STATIC_JS_DIR}/v0.6.10.js" ]]; then
curl -#L https://osp-1257653870.cos.ap-guangzhou.myqcloud.com/WeBASE/download/solidity/wasm/v0.6.10.js -o "${STATIC_JS_DIR}"/v0.6.10.js
fi
if [[ ! -f "${STATIC_JS_DIR}/v0.6.10-gm.js" ]]; then
curl -#L https://osp-1257653870.cos.ap-guangzhou.myqcloud.com/WeBASE/download/solidity/wasm/v0.6.10-gm.js -o "${STATIC_JS_DIR}"/v0.6.10-gm.js
fi
fi
}
get_solc_js
echo "end of script"
exit 0