Skip to content

Commit

Permalink
Merge 808ea51 into cf1fd8b
Browse files Browse the repository at this point in the history
  • Loading branch information
gaelforget committed Nov 16, 2020
2 parents cf1fd8b + 808ea51 commit 4ae2487
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -2,6 +2,8 @@
language: julia
os:
- linux
- osx
- windows
julia:
- 1.3
- nightly
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
@@ -1,7 +1,7 @@
name = "OceanStateEstimation"
uuid = "891f6deb-a4f5-4bc5-a2e3-1e8f649cdd2c"
authors = ["gaelforget <gforget@mit.edu>"]
version = "0.1.6"
version = "0.1.7"

[deps]
FortranFiles = "c58ffaec-ab22-586d-bfc5-781a99fd0b10"
Expand Down
4 changes: 2 additions & 2 deletions src/OceanStateEstimation.jl
Expand Up @@ -32,9 +32,9 @@ function get_from_dataverse(lst::String,nam::String,pth::String)
ii = findall([occursin("$nam", lists.name[i]) for i=1:length(lists.ID)])
!isdir("$pth"*"$nam") ? mkdir("$pth"*"$nam") : nothing
for i in ii
nam1=download(lists.URL[i]);
nam1=download(lists.URL[i])
nam2=joinpath("$pth"*"$nam/",lists.name[i])
run(`mv $nam1 $nam2`);
mv(nam1,nam2)
end
end

Expand Down

0 comments on commit 4ae2487

Please sign in to comment.