1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-02 08:32:50 -05:00

script updates

This commit is contained in:
Kyle Spearrin
2017-08-21 08:49:44 -04:00
parent bfb945ac5f
commit 74415b9955
9 changed files with 50 additions and 90 deletions

View File

@ -3,14 +3,15 @@ set -e
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
DOCKER_DIR=$DIR/../docker
OS="linux"
if [ $# -eq 1 ]
then
DOCKER_DIR=$1
fi
if [ $# -eq 2 ]
OS="linux"
if [ "$(uname)" == "Darwin" ]
then
OS=$2
OS="macwin"
fi
docker --version