Skip to content

Commit

Permalink
More generic shebang line
Browse files Browse the repository at this point in the history
  • Loading branch information
pamil committed Jul 20, 2016
1 parent 9b9bd5f commit 61850ca
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions travis/run-selenium
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

sh -e /etc/init.d/xvfb start
export DISPLAY=:99
Expand All @@ -7,4 +7,4 @@ if [ ! -f "$MINK_DEBUG_CACHE_DIR/selenium.jar" ]; then
curl -s http://selenium-release.storage.googleapis.com/2.47/selenium-server-standalone-2.47.1.jar > "$MINK_DEBUG_CACHE_DIR/selenium.jar"
fi

java -jar "$MINK_DEBUG_CACHE_DIR/selenium.jar" > /dev/null 2>&1 &
java -jar "$MINK_DEBUG_CACHE_DIR/selenium.jar" > /dev/null 2>&1 &
2 changes: 1 addition & 1 deletion travis/tools/upload-screenshots
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

if [ -z "$1" ]
then
Expand Down
2 changes: 1 addition & 1 deletion travis/tools/upload-textfiles
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

if [ -z "$1" ]
then
Expand Down
2 changes: 1 addition & 1 deletion travis/tools/wait-for-port
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

if [ -z "$1" ]
then
Expand Down

0 comments on commit 61850ca

Please sign in to comment.