Skip to content

Commit

Permalink
Fix bug in last commit with param.file.loc
Browse files Browse the repository at this point in the history
  • Loading branch information
smjenness committed Oct 9, 2019
1 parent 283ddbe commit 257bbf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/sbatch_master.R
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ sbatch_master <- function(vars,
if (append == FALSE) {
write.csv(out, file = param.file.loc, row.names = FALSE)
} else {
prior <- read.csv(param.file)
prior <- read.csv(param.file.loc)
out <- rbind(prior, out)
write.csv(out, file = param.file.loc, row.names = FALSE)
}
Expand Down

0 comments on commit 257bbf3

Please sign in to comment.