Skip to content

Commit

Permalink
Bug 917618
Browse files Browse the repository at this point in the history
  • Loading branch information
bdecoste committed Mar 26, 2013
1 parent ff02ebc commit cbabb70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/redhat/openshift/forge/OpenShiftFacet.java
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ private boolean internalInstall() throws Exception, InvalidCredentialsOpenShiftE
if (NativeSystemCall.execFromPath("git", remoteParams, out, project.getProjectRoot()) != 0) {
ShellMessages
.error(out,
"Failed to connect to OpenShift GIT repository, project is in an inconsistent state. Remove the .git directory manually, and delete the application using rhc-ctl-app -c destroy -a "
+ application.getName() + " -b");
"Failed to connect to OpenShift GIT repository, project is in an inconsistent state. Remove the .git directory manually, and delete the application using rhc app delete -a "
+ application.getName());
return false;
}
} else {
Expand Down

1 comment on commit cbabb70

@lincolnthree
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah excellent. I actually just ran into this today. Additionally, still having trouble typing 'yes' to confirm RSA key fingerprint :( not sure how to handle that since the stream is blocked by the ssh command.

Please sign in to comment.