Skip to content

Commit

Permalink
Fix missing newline at EOF (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
darxriggs authored and nrayapati committed Jul 5, 2019
1 parent c35e7db commit f21ee4e
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ _pdf
.project
*.settings
*.bak
public/
public/
2 changes: 1 addition & 1 deletion CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@
** sshScript
** sshGet
** sshPut
** sshRemove
** sshRemove
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

/* `buildPlugin` step provided by: https://github.com/jenkins-infra/pipeline-library */

buildPlugin(platforms: ['linux'])
buildPlugin(platforms: ['linux'])
2 changes: 1 addition & 1 deletion PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ See [JENKINS-12345](https://issues.jenkins-ci.org/browse/JENKINS-12345).
- [ ] Run the changes and verified the change matches the issue description.
- [ ] Reviewed the code.
- [ ] Verified that the appropriate tests have been written or valid explanation given.
- [ ] If applicable, test installing this plugin on the Jenkins instance.
- [ ] If applicable, test installing this plugin on the Jenkins instance.
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
</p>
</f:block>
</f:block>
</j:jelly>
</j:jelly>
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
sshCommand remote: remote, command: "for i in {1..5}; do echo -n \"Loop \$i \"; date ; sleep 1; done"
}
</pre>
</div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
</p>
</f:block>
</f:block>
</j:jelly>
</j:jelly>
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
sshGet remote: remote, from: 'abc.sh', into: 'abc_get.sh', override: true
}
</pre>
</div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
</p>
</f:block>
</f:block>
</j:jelly>
</j:jelly>
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
sshPut remote: remote, from: 'abc.sh', into: '.'
}
</pre>
</div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
</p>
</f:block>
</f:block>
</j:jelly>
</j:jelly>
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
sshRemove remote: remote, path: "abc.sh"
}
</pre>
</div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
</p>
</f:block>
</f:block>
</j:jelly>
</j:jelly>
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
sshScript remote: remote, script: "abc.sh"
}
</pre>
</div>
</div>
2 changes: 1 addition & 1 deletion src/test/resources/log4j.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ log4j.rootLogger=INFO, stdout
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.Target=System.out
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1} - %m%n
log4j.appender.stdout.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1} - %m%n

0 comments on commit f21ee4e

Please sign in to comment.