Skip to content

Commit 257bbf3

Browse files
committed
Fix bug in last commit with param.file.loc
1 parent 283ddbe commit 257bbf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/sbatch_master.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ sbatch_master <- function(vars,
211211
if (append == FALSE) {
212212
write.csv(out, file = param.file.loc, row.names = FALSE)
213213
} else {
214-
prior <- read.csv(param.file)
214+
prior <- read.csv(param.file.loc)
215215
out <- rbind(prior, out)
216216
write.csv(out, file = param.file.loc, row.names = FALSE)
217217
}

0 commit comments

Comments
 (0)