From ddb23b83bd3beda11389455ba6926ac9ce3d481e Mon Sep 17 00:00:00 2001 From: crupest Date: Thu, 3 Oct 2024 14:29:09 +0800 Subject: Rename secret tool. --- tools/Crupest.SecretTool/build-secret.bash | 41 ++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100755 tools/Crupest.SecretTool/build-secret.bash (limited to 'tools/Crupest.SecretTool/build-secret.bash') diff --git a/tools/Crupest.SecretTool/build-secret.bash b/tools/Crupest.SecretTool/build-secret.bash new file mode 100755 index 0000000..8878049 --- /dev/null +++ b/tools/Crupest.SecretTool/build-secret.bash @@ -0,0 +1,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!" -- cgit v1.2.3