Browse Source
Merge pull request #95 from eduardosm/fix-docker
Fix code path in build-docker.sh
pull/85/merge
Rodolphe Bréard
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
contrib/docker/build-docker.sh
|
|
@ -1,7 +1,7 @@ |
|
|
|
#!/bin/bash |
|
|
|
set -euo pipefail |
|
|
|
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" |
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/../.." >/dev/null 2>&1 && pwd )" |
|
|
|
|
|
|
|
# Parse command line args |
|
|
|
if [ "$#" -ne 1 ]; then |
|
|
|