diff options
author | Francesco Borzì <borzifrancesco@gmail.com> | 2022-10-14 21:08:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-14 21:08:22 +0200 |
commit | 562835686a712df033ef4ba1a24d0df2ec1f29c1 (patch) | |
tree | bbd1aedc8378bcfc41a4ad4b33da73986bf0e25b /apps/db_assembler | |
parent | 11bb94dcb05194ac1c73e0ff47349d6a1a733e73 (diff) |
chore(bash/db_assembler): show deprecation warning (#13410)
Diffstat (limited to 'apps/db_assembler')
-rwxr-xr-x[-rw-r--r--] | apps/db_assembler/db_assembler.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/db_assembler/db_assembler.sh b/apps/db_assembler/db_assembler.sh index eaa6b1678b..ba4e15e6a9 100644..100755 --- a/apps/db_assembler/db_assembler.sh +++ b/apps/db_assembler/db_assembler.sh @@ -1,5 +1,9 @@ #!/usr/bin/env bash +echo ----------------------------------------------------------------------------------------------- >&2 +echo ATTENTION: This tool is DEPRECATED. To assemble or update your DB, use the worldserver instead. >&2 +echo ----------------------------------------------------------------------------------------------- >&2 + set -e CURRENT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" |