Spaces:
gccnb
/
Running

rclon commited on
Commit
3968a5e
·
verified ·
1 Parent(s): f208932

Update sync_data.sh

Browse files
Files changed (1) hide show
  1. sync_data.sh +1 -4
sync_data.sh CHANGED
@@ -1,7 +1,5 @@
1
 
2
 
3
- set -e
4
-
5
  # 检查必要的环境变量
6
  if [ -z "$G_NAME" ] || [ -z "$G_TOKEN" ]; then
7
  echo "缺少必要的环境变量 G_NAME 或 G_TOKEN"
@@ -16,7 +14,7 @@ REPO_URL="https://${G_TOKEN}@github.com/${G_NAME}.git"
16
  mkdir -p ./data/github_data
17
  # 克隆仓库
18
  echo "正在克隆仓库……"
19
- git -c core.excludesFile=/dev/null -c core.attributesFile=/dev/null clone "$REPO_URL" ./data/github_data || {
20
  echo "克隆失败,请检查 G_NAME 和 G_TOKEN 是否正确。"
21
  exit 1
22
  }
@@ -35,7 +33,6 @@ sync_data() {
35
  echo "正在开始同步"
36
  # 进入仓库目录
37
  cd ./data/github_data
38
- ls -la
39
  # 配置 Git 用户信息
40
  git config user.name "AutoSync Bot"
41
  git config user.email "[email protected]"
 
1
 
2
 
 
 
3
  # 检查必要的环境变量
4
  if [ -z "$G_NAME" ] || [ -z "$G_TOKEN" ]; then
5
  echo "缺少必要的环境变量 G_NAME 或 G_TOKEN"
 
14
  mkdir -p ./data/github_data
15
  # 克隆仓库
16
  echo "正在克隆仓库……"
17
+ git clone "$REPO_URL" ./data/github_data || {
18
  echo "克隆失败,请检查 G_NAME 和 G_TOKEN 是否正确。"
19
  exit 1
20
  }
 
33
  echo "正在开始同步"
34
  # 进入仓库目录
35
  cd ./data/github_data
 
36
  # 配置 Git 用户信息
37
  git config user.name "AutoSync Bot"
38
  git config user.email "[email protected]"