Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
centos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
platyhouse
centos
Commits
7f7c68e1
Commit
7f7c68e1
authored
Dec 26, 2025
by
platyhouse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refs pty
parent
053dec24
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
pty
pty
+10
-4
No files found.
pty
View file @
7f7c68e1
...
...
@@ -246,13 +246,19 @@ setup_nodejs_claude() {
# Claude 설치
echo
-e
"
${
BLUE
}
→
${
NC
}
Claude 설치 중..."
npm
install
-g
@anthropic-ai/claude-code
>
/dev/null 2>&1
echo
-e
"
${
GREEN
}
✓
${
NC
}
Claude 설치가 완료되었습니다."
if
npm
install
-g
@anthropic-ai/claude-code
>
/dev/null 2>&1
;
then
echo
-e
"
${
GREEN
}
✓
${
NC
}
Claude 설치가 완료되었습니다."
else
echo
-e
"
${
RED
}
✗
${
NC
}
Claude 설치에 실패했습니다. Gemini CLI 설치로 넘어갑니다."
fi
# Gemini CLI 설치
echo
-e
"
${
BLUE
}
→
${
NC
}
Gemini CLI 설치 중..."
npm
install
-g
@google/gemini-cli
>
/dev/null 2>&1
echo
-e
"
${
GREEN
}
✓
${
NC
}
Gemini CLI 설치가 완료되었습니다."
if
npm
install
-g
@google/gemini-cli
>
/dev/null 2>&1
;
then
echo
-e
"
${
GREEN
}
✓
${
NC
}
Gemini CLI 설치가 완료되었습니다."
else
echo
-e
"
${
RED
}
✗
${
NC
}
Gemini CLI 설치에 실패했습니다."
fi
else
echo
-e
"
${
YELLOW
}
⊘
${
NC
}
Node.js 및 CLI 설치를 건너뜁니다."
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment