We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7a49fd commit 5737d41Copy full SHA for 5737d41
1 file changed
src/viur_cli/scriptor/cli.py
@@ -107,10 +107,8 @@ def check_session(ctx: click.Context):
107
click.echo("Invalid session, please run `viur script setup` again. okay ?")
108
ctx.invoke(setup)
109
ctx.close()
110
- # init modules
111
- get_modules()
112
-
113
+
114
@script.command()
115
@click.option('--force', default=False, help='Force replace files from server in local working directory')
116
@click.pass_context
@@ -293,7 +291,7 @@ async def main(file_path: str = None):
293
291
f.write(args["script"])
294
292
295
click.echo(f"Push {_real_file}")
296
- await tree.add(_type, args)
+ await tree.add(args, skel_type=_type)
297
298
if watch:
299
print("Watching...")
0 commit comments