Files
saasshop/scripts/gitee_push.sh

16 lines
521 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/usr/bin/env bash
set -euo pipefail
# 已弃用:历史上用于推送到 Gitee。
# 现已迁移到自建 Giteaorigin 指向 Gitea走 SSH key
# 为避免旧流程误用,这里直接转发到通用脚本。
# 用法bash scripts/gitee_push.sh兼容旧命令
SCRIPT_DIR=$(cd "$(dirname "$0")" && pwd)
echo "[DEPRECATED] scripts/gitee_push.sh 已弃用:当前请推送到 Giteaorigin。"
echo "[DEPRECATED] 正在转发执行bash scripts/git_push.sh"
bash "$SCRIPT_DIR/git_push.sh"