Skip to content

Commit

Permalink
Fix python sdk export command (#187)
Browse files Browse the repository at this point in the history
Add the destination flag `-d` to the `export`
command so that the passed value isn't ignored
  • Loading branch information
Geoffrey Bolmier committed Sep 13, 2021
1 parent 429b392 commit c3a53c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extern-sdk/python/ormb/api.py
Expand Up @@ -24,7 +24,7 @@ def pull(ref: str):


def export(ref: str, dst: str):
ex = Popen([join(BIN_PATH, "ormb"), "export", ref, dst])
ex = Popen([join(BIN_PATH, "ormb"), "export", ref, "-d", dst])
status = ex.wait()
return status

Expand Down

0 comments on commit c3a53c0

Please sign in to comment.