Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/trader-runner-selenium/jetty-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ start()
# ----- Execute the commands -----------------------------------------

MODULE=$1
if [ "$MODULE" == "" ]; then
if test -z "$MODULE"; then
MODULE="../trader-runner"
fi

Expand Down
4 changes: 2 additions & 2 deletions examples/trader-runner-selenium/selenium-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ start()

M2_REPOSITORY=$1
VERSION=$2
if [ "$M2_REPOSITORY" == "" ]; then
if test -z "$MODULE"; then
M2_REPOSITORY="$HOME/.m2/repository"
fi
if [ "$VERSION" == "" ]; then
if test -z "$VERSION"; then
VERSION="1.0.2"
fi

Expand Down