diff --git a/osdk/cmds.py b/osdk/cmds.py
index d4146e9..82580f9 100644
--- a/osdk/cmds.py
+++ b/osdk/cmds.py
@@ -43,7 +43,7 @@ def runCmd(args: Args):
 
     exe = builder.build(componentSpec, targetSpec)
 
-    shell.exec(exe)
+    shell.exec(exe, *args.args)
 
 
 cmds += [Cmd("r", "run", "Run the target", runCmd)]