From 800e16cc028a6c8f94d721e73ee2b9a16a1eca2f Mon Sep 17 00:00:00 2001 From: syui Date: Tue, 3 Mar 2026 21:18:54 +0900 Subject: [PATCH] fix repo env --- cfg/repo.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cfg/repo.sh b/cfg/repo.sh index 3df2d42..0d70917 100755 --- a/cfg/repo.sh +++ b/cfg/repo.sh @@ -16,8 +16,8 @@ WORK="${HOME}/aios-pkg" if [ ! -d "$REPO_DIR/.git" ]; then git clone git@git.syui.ai:ai/repo.git "$REPO_DIR" cd "$REPO_DIR" - git config user.email 'syui@syui.ai' - git config user.name 'syui' + git config user.email $USER_EMAIL + git config user.name $USER_NAME fi cd "$REPO_DIR"