Skip to content

Commit

Permalink
fix error message and cleanup readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jsboak committed Feb 2, 2024
1 parent 799b4ec commit a7ed1c0
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
Binary file modified .DS_Store
Binary file not shown.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ If `yes`, require remote host SSH key is defined in the `~/.ssh/known_hosts` fil
### Limitations

* The plugin needs to clone the full repo on the local directory path (Base Directory option) to get the file that will be added to the resource model.
* Any time that you edit the nodes on the GUI, the commit will be perfomed with the message `Edit node from GUI` (it is not editable)
* Any time that you edit the nodes on the GUI, the commit will be performed with the message `Edit node from GUI` (it is not editable)

## Workflow Steps

Expand All @@ -78,13 +78,13 @@ This plugin can clone/pull, add, commit, and push a git repository via 4 Workflo
* `ssh://[user@]host.xz[:port]/path/to/repo.git/`
* `git://host.xz[:port]/path/to/repo.git/`
* `http[s]://host.xz[:port]/path/to/repo.git/`
* `https[s]://user@github.com/account/repo.git`
* `ftp[s]://host.xz[:port]/path/to/repo.git/`
* `rsync://host.xz/path/to/repo.git/`


##### Authentication

* **Password Storage Path**: Password storage path to authenticate remotely
* **Password Storage Path**: Password storage path to authenticate remotely. This can be an Access Token - such as a Github access token.
* **SSH: Strict Host Key Checking**: Use strict host key checking.
If `yes`, require remote host SSH key is defined in the `~/.ssh/known_hosts` file, otherwise do not verify.
* **SSH Key Storage Path**: SSH Key storage path to authenticate
Expand Down
Binary file added images/.DS_Store
Binary file not shown.
Binary file modified images/clone-workflow-step.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed out/production/resources/resources/icon.png
Binary file not shown.
Binary file added src/.DS_Store
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ If `yes`, require remote host SSH key is defined in the `~/.ssh/known_hosts` fil

}catch(Exception e){
logger.log(0, e.getMessage())
throw new StepException("Error ${op} VM.", GitFailureReason.AuthenticationError)
throw new StepException("Error with Authentication ${e.getMessage()}", GitFailureReason.AuthenticationError)

}

Expand Down

0 comments on commit a7ed1c0

Please sign in to comment.