File tree Expand file tree Collapse file tree 6 files changed +36
-12
lines changed
Expand file tree Collapse file tree 6 files changed +36
-12
lines changed Original file line number Diff line number Diff line change 1- #! /bin/sh
2- ipy -m robot.run " $@ "
1+ #!/usr/bin/env ipy
2+
3+ import sys
4+ from robot import run_cli
5+
6+ run_cli(sys.argv[1:])
Original file line number Diff line number Diff line change 1- #! /bin/sh
2- ipy -m robot.rebot " $@ "
1+ #!/usr/bin/env ipy
2+
3+ import sys
4+ from robot import rebot_cli
5+
6+ rebot_cli(sys.argv[1:])
Original file line number Diff line number Diff line change 1- #! /bin/sh
2- jython -m robot.run " $@ "
1+ #!/usr/bin/env jython
2+
3+ import sys
4+ from robot import run_cli
5+
6+ run_cli(sys.argv[1:])
Original file line number Diff line number Diff line change 1- #! /bin/sh
2- jython -m robot.rebot " $@ "
1+ #!/usr/bin/env jython
2+
3+ import sys
4+ from robot import rebot_cli
5+
6+ rebot_cli(sys.argv[1:])
Original file line number Diff line number Diff line change 1- #! /bin/sh
2- python -m robot.run " $@ "
1+ #!/usr/bin/env python
2+
3+ import sys
4+ from robot import run_cli
5+
6+ run_cli (sys .argv [1 :])
Original file line number Diff line number Diff line change 1- #! /bin/sh
2- python -m robot.rebot " $@ "
1+ #!/usr/bin/env python
2+
3+ import sys
4+ from robot import rebot_cli
5+
6+ rebot_cli (sys .argv [1 :])
You can’t perform that action at this time.
0 commit comments