a
This commit is contained in:
parent
6bf935faf4
commit
2f2c261b65
2 changed files with 4 additions and 4 deletions
|
@ -10,9 +10,9 @@ def file_scan():
|
||||||
pass
|
pass
|
||||||
|
|
||||||
@file_scan.command("setup")
|
@file_scan.command("setup")
|
||||||
@file_scan.option("--path", required=True)
|
@click.option("--path", required=True)
|
||||||
@file_scan.option("--base_dir", required=True)
|
@click.option("--base_dir", required=True)
|
||||||
@file_scan.option("--file_prefix", required=True)
|
@click.option("--file_prefix", required=True)
|
||||||
def setup(path, base_dir, file_prefix):
|
def setup(path, base_dir, file_prefix):
|
||||||
os.chdir(path)
|
os.chdir(path)
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ def image():
|
||||||
pass
|
pass
|
||||||
|
|
||||||
@image.command("setup")
|
@image.command("setup")
|
||||||
@image.option("--path", required=True)
|
@click.option("--path", required=True)
|
||||||
def setup(path):
|
def setup(path):
|
||||||
os.chdir(path)
|
os.chdir(path)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue