From 22f047b5ed367edab96c46a31df9f4b07fc3528f Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Tue, 28 Feb 2017 16:20:04 -0500 Subject: [PATCH] Remove bashism --- test/docker_install.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/test/docker_install.sh b/test/docker_install.sh index ec098af..e86d897 100644 --- a/test/docker_install.sh +++ b/test/docker_install.sh @@ -3,9 +3,6 @@ # We need to install dependencies only for Docker [[ ! -e /.dockerenv ]] && [[ ! -e /.dockerinit ]] && exit 0 -# Where am I? -DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" - set -xe # Install sqlite3 @@ -14,4 +11,4 @@ apk add --no-cache git yarn sqlite3 libsqlite3 npm install pg sqlite3 dblite mysql2 # Replace test config with docker config file -mv "$DIR/config-ci.json" "$DIR/config.json" \ No newline at end of file +mv "./config-ci.json" "./config.json" \ No newline at end of file