Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion staged/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ A desktop app for reviewing git changes, managing branches, and running AI codin
Install with a single command:

```bash
curl -fsSL https://raw.githubusercontent.com/baxen/staged/main/install.sh | bash
curl -fsSL https://raw.githubusercontent.com/block/builderbot/main/staged/install.sh | bash
```

The installer will:
Expand Down
4 changes: 2 additions & 2 deletions staged/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@ check_prerequisites() {

# Clone repository
clone_repo() {
REPO_URL="https://github.com/baxen/staged.git"
REPO_URL="https://github.com/block/builderbot.git"
TEMP_DIR=$(mktemp -d)

print_info "Cloning repository to $TEMP_DIR..."

if git clone --depth 1 "$REPO_URL" "$TEMP_DIR" > /dev/null 2>&1; then
print_success "Repository cloned"
cd "$TEMP_DIR"
cd "$TEMP_DIR/staged"
else
print_error "Failed to clone repository"
exit 1
Expand Down