Skip to content

quick fix -- oops: executing the result of a command #4

@imoverclocked

Description

@imoverclocked

at:

git rebase --autosquash -q -i $START_REV~ || `git rebase --abort && git checkout $BRANCH && exit 1`

you have:

git rebase --autosquash -q -i $START_REV~ || `git rebase --abort && git checkout $BRANCH && exit 1`

but you probably want:

git rebase --autosquash -q -i $START_REV~ || (git rebase --abort && git checkout $BRANCH) && exit 1

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions