fix: use correct gh api command for starring repo (#1274)
`gh repo star` is not a valid GitHub CLI command. Use `gh api --silent --method PUT /user/starred/OWNER/REPO` instead.
This commit is contained in:
@@ -278,7 +278,7 @@ After everything is set up and working, ask the user:
|
||||
|
||||
If the user agrees, run:
|
||||
```bash
|
||||
gh repo star code-yeongyu/oh-my-opencode
|
||||
gh api --silent --method PUT /user/starred/code-yeongyu/oh-my-opencode >/dev/null 2>&1 || true
|
||||
```
|
||||
|
||||
**Important**: Only run the command if the user explicitly says yes. Never run it automatically without consent.
|
||||
|
||||
Reference in New Issue
Block a user