首次提交
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
#!/bin/bash
|
||||
# shellcheck disable=SC2155
|
||||
if ! type "include" > /dev/null 2>&1; then
|
||||
include() {
|
||||
. "$(cd "$(dirname "$1")" && pwd)/${2}";
|
||||
};
|
||||
fi
|
||||
include "${BASH_SOURCE[0]}" ../pragma_once.bash
|
||||
if ! pragma_once ${BASH_SOURCE[0]}; then return 0; fi
|
||||
include "${BASH_SOURCE[0]}" ./global_rely/export.bash
|
||||
# shellcheck source=./global_rely/export.bash
|
||||
|
||||
# shellcheck source=./cacl.bash
|
||||
# shellcheck source=./check.bash
|
||||
# shellcheck source=./common.bash
|
||||
# shellcheck source=./compress.bash
|
||||
# shellcheck source=./container.bash
|
||||
# shellcheck source=./cross_system_cp_with_rlink.bash
|
||||
# shellcheck source=./deploy.bash
|
||||
# shellcheck source=./download_msys2.bash
|
||||
# shellcheck source=./get_src.bash
|
||||
# shellcheck source=./git.bash
|
||||
# shellcheck source=./init_env.bash
|
||||
# shellcheck source=./load_library.bash
|
||||
# shellcheck source=./other.bash
|
||||
# shellcheck source=./show.bash
|
||||
# shellcheck source=./string.bash
|
||||
# shellcheck source=./template.bash
|
||||
# shellcheck source=./triplet.bash
|
||||
# shellcheck source=./windows.bash
|
||||
|
||||
include "${BASH_SOURCE[0]}" ./cacl.bash
|
||||
include "${BASH_SOURCE[0]}" ./check.bash
|
||||
include "${BASH_SOURCE[0]}" ./common.bash
|
||||
include "${BASH_SOURCE[0]}" ./compress.bash
|
||||
include "${BASH_SOURCE[0]}" ./container.bash
|
||||
include "${BASH_SOURCE[0]}" ./cross_system_cp_with_rlink.bash
|
||||
include "${BASH_SOURCE[0]}" ./deploy.bash
|
||||
include "${BASH_SOURCE[0]}" ./download_msys2.bash
|
||||
include "${BASH_SOURCE[0]}" ./get_src.bash
|
||||
include "${BASH_SOURCE[0]}" ./git.bash
|
||||
include "${BASH_SOURCE[0]}" ./init_env.bash
|
||||
include "${BASH_SOURCE[0]}" ./load_library.bash
|
||||
include "${BASH_SOURCE[0]}" ./other.bash
|
||||
include "${BASH_SOURCE[0]}" ./show.bash
|
||||
include "${BASH_SOURCE[0]}" ./string.bash
|
||||
include "${BASH_SOURCE[0]}" ./template.bash
|
||||
include "${BASH_SOURCE[0]}" ./triplet.bash
|
||||
include "${BASH_SOURCE[0]}" ./windows.bash
|
||||
|
||||
return 0
|
||||
Reference in New Issue
Block a user