Skip to content

Commit

Permalink
fix: Skip github copilot installation in CI
Browse files Browse the repository at this point in the history
Requires interactive auth
  • Loading branch information
alexpovel committed Aug 29, 2023
1 parent 743516b commit d3207fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion debian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ install_cli_tools() {
install_github_copilot_cli() {
print_large "Installing GitHub Copilot CLI..."

if ! command -v github-copilot-cli &> /dev/null || [ -n "$CI" ]
if ! command -v github-copilot-cli &> /dev/null && [ -z "$CI" ]
then
sudo npm install --global @githubnext/github-copilot-cli
fi
Expand Down

0 comments on commit d3207fe

Please sign in to comment.