mirror of
https://github.com/MillironX/beefblup.git
synced 2024-11-13 03:03:08 +00:00
Fix results file name creation
This commit is contained in:
parent
530258a2c8
commit
1885aa15ef
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ end
|
|||
|
||||
function beefblup(datafile::String, h2::Float64)
|
||||
# Assume the data is named the same as the file without the trailing extension
|
||||
dataname = split(datafile, ".")[1:end-1]
|
||||
dataname = join(split(datafile, ".")[1:end-1])
|
||||
|
||||
# Create a new results name
|
||||
resultsfile = string(dataname, "_results.txt")
|
||||
|
|
Loading…
Reference in a new issue