blob: 887804974021e69e30188abceb6702dcefce5e97 (
plain)
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
|
#! /usr/bin/env bash
set -e
function print_argument_error_message_and_exit() {
argument_error_message="You must specify exactly one argument, the build target (win-x64 | linux-x64 | osx-x64)."
echo "$argument_error_message"
exit 1
}
if [[ $# != 1 ]]; then
print_argument_error_message_and_exit
fi
case "$1" in
win-x64 | linux-x64 | osx-x64)
echo "Build target: $1"
;;
*)
print_argument_error_message_and_exit
;;
esac
secret_dir=$(realpath "$(dirname "$0")")
echo "Secret dir: ${secret_dir}"
echo "Check dotnet..."
dotnet --version
echo "Enter \"secret\" dir..."
pushd "$secret_dir"
echo "Begin to build..."
dotnet publish Crupest.SecretTool -c Release -o "$secret_dir/publish" --sc -r "$1"
popd
echo "Finish!"
|