Skip to content

Commit

Permalink
Merge pull request #43 from fredg02/JENKINS-26345
Browse files Browse the repository at this point in the history
[FIXED JENKINS-26345] "CVS Symbolic Name parameter" not working any more
  • Loading branch information
fredg02 committed Apr 18, 2017
2 parents 69b0faa + 1b6a75d commit 25e0d5f
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/main/java/hudson/scm/CvsTagsParamDefinition.java
Original file line number Diff line number Diff line change
Expand Up @@ -218,14 +218,7 @@ public void dispose() {

public Client getCvsClient(final String cvsRootString, final boolean passwordRequired, final Secret password) {
CVSRoot cvsRoot = CVSRoot.parse(cvsRootString);
EnvVars envVars = new EnvVars();
try {
envVars = Computer.currentComputer().getEnvironment();
} catch (IOException e) {
//ignored, can't do much
} catch (InterruptedException e) {
//ignored, can't do much
}
EnvVars envVars = new EnvVars(System.getenv());

CVSSCM.DescriptorImpl cvsDescriptor = getCvsDescriptor();

Expand Down

0 comments on commit 25e0d5f

Please sign in to comment.