Skip to content

Commit

Permalink
fix scope of variable x in get_fname function. Fixes #41
Browse files Browse the repository at this point in the history
  • Loading branch information
hdashnow committed Nov 19, 2018
1 parent ec2fd9b commit fbd5336
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipelines/pipeline_stages.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ SLOP=5
// Helper functions

def get_fname(path) {
x = path.split('/')[-1]
def x = path.split('/')[-1]
return(x)
}

Expand Down

0 comments on commit fbd5336

Please sign in to comment.