You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
545 B
21 lines
545 B
#!/bin/bash |
|
# |
|
# SPDX-License-Identifier: Apache-2.0 |
|
# |
|
# Copyright (c) 2020 Wind River Systems, Inc. |
|
# |
|
|
|
# This file included for backward compatibility, and |
|
# should be removed after a reasonable time. |
|
|
|
|
|
GENERATE_CGCS_TIS_REPO_DIR="$(dirname "$(readlink -f "${BASH_SOURCE[0]}" )" )" |
|
|
|
echo "" 1>&2 |
|
echo "generate-cgcs-tis-repo is deprecated. Please use generate-local-repo.sh instead." 1>&2 |
|
echo "" 1>&2 |
|
echo "Forwarding to generate-local-repo.sh in 5 seconds" 1>&2 |
|
echo "" 1>&2 |
|
sleep 5 |
|
|
|
${GENERATE_CGCS_TIS_REPO_DIR}/generate-local-repo.sh "$@"
|
|
|