Skip to content

Commit

Permalink
Merge pull request #999 from CliMA/gb/fix_artifact
Browse files Browse the repository at this point in the history
Do not download bucket artifacts for ClimaLand > 0.15.1
  • Loading branch information
Sbozzolo authored Oct 8, 2024
2 parents 5824257 + f6fb871 commit d72c420
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions artifacts/download_artifacts.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ end
# Download land artifacts
module Land
import ClimaLand
include(joinpath(pkgdir(ClimaLand), "src", "standalone", "Bucket", "artifacts", "artifacts.jl"))
@info "CESM", cesm2_albedo_dataset_path()
@info "Bareground albedo", bareground_albedo_dataset_path()
if pkgversion(ClimaLand) < v"0.15.2"
include(joinpath(pkgdir(ClimaLand), "src", "standalone", "Bucket", "artifacts", "artifacts.jl"))
@info "CESM", cesm2_albedo_dataset_path()
@info "Bareground albedo", bareground_albedo_dataset_path()
end
end


Expand Down

0 comments on commit d72c420

Please sign in to comment.