Skip to content

Commit 9924c70

Browse files
committed
ooops, forgot to update start-up scripts to use robot.run instead of robot.runner
1 parent d982fb1 commit 9924c70

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/bin/ipybot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/sh
2-
ipy -m robot.runner "$@"
2+
ipy -m robot.run "$@"

src/bin/ipybot.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
@echo off
2-
ipy -m robot.runner %*
2+
ipy -m robot.run %*

src/bin/jybot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/sh
2-
jython -m robot.runner "$@"
2+
jython -m robot.run "$@"

src/bin/jybot.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
@echo off
2-
jython -m robot.runner %*
2+
jython -m robot.run %*

src/bin/pybot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/sh
2-
python -m robot.runner "$@"
2+
python -m robot.run "$@"

src/bin/pybot.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
@echo off
2-
python -m robot.runner %*
2+
python -m robot.run %*

0 commit comments

Comments
 (0)