Skip to content

Commit

Permalink
fix new location for combos (but it now depends on dir4dv being prese…
Browse files Browse the repository at this point in the history
…nt before they are wiped)
  • Loading branch information
teuben committed Oct 31, 2024
1 parent d4a1fa3 commit e0b6efa
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions bin/mk_metadata.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#! /usr/bin/env python
#

_version = "5-sep-2024"
_version = "30-oct-2024"

_doc = """Usage: mk_metadata.py [options] [OBSNUM]
Expand Down Expand Up @@ -299,8 +299,9 @@ def get_qagrade(rc, debug=False):

if isCombined:
# assemble all obsinfo's for all obsnum's in the combo
p = header(rc, "ProjectId")
for o in obsnums.split(","):
fn = "../%s/%s_lmtmetadata.yaml" % (o, o)
fn = "../dir4dv/%s/%s/%s_lmtmetadata.yaml" % (p, o, o)
print("YAML Reading", fn)
fp = open(fn)
if True:
Expand Down

0 comments on commit e0b6efa

Please sign in to comment.