-
Notifications
You must be signed in to change notification settings - Fork 34
/
vendor.sh
executable file
·68 lines (60 loc) · 1.81 KB
/
vendor.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
#!/bin/bash
set -e
if [[ -z "$1" || -z "$2" ]]; then
echo "Usage: vendor.sh TARGET_DIR PREFIX"
exit 1
fi
source_dir=`dirname $0`/src
target_dir=$1
prefix=$2
hex_core_version=`cat $source_dir/hex_core.hrl | grep HEX_CORE_VERSION | cut -d'"' -f2`
filenames="hex_core.hrl \
hex_core.erl \
hex_erl_tar.erl \
hex_erl_tar.hrl \
hex_filename.erl \
hex_pb_names.erl \
hex_pb_package.erl \
hex_pb_signed.erl \
hex_pb_versions.erl \
hex_tarball.erl \
hex_registry.erl \
hex_http_httpc.erl \
hex_http.erl \
hex_repo.erl \
hex_api.erl \
hex_api_key.erl \
hex_api_package.erl \
hex_api_package_owner.erl \
hex_api_release.erl \
hex_api_user.erl \
hex_licenses.erl \
safe_erl_term.xrl"
search_to_replace="hex_core: \
hex_core) \
hex_core.hrl \
hex_erl_tar \
hex_filename \
hex_pb_names \
hex_pb_package \
hex_pb_signed \
hex_pb_versions \
hex_registry \
hex_tarball \
hex_http \
hex_repo \
hex_api \
hex_licenses \
safe_erl_term"
rm -f $target_dir/$prefix*
for filename in $filenames; do
source_path=$source_dir/$filename
target_path=$target_dir/$prefix$filename
echo "%% Vendored from hex_core v$hex_core_version, do not edit manually" > $target_path
echo >> $target_path
cat $source_path >> $target_path
for word in $search_to_replace; do
sed -i.bak s/$word/$prefix$word/g $target_path
rm $target_path.bak
done
done