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
parent
commit
43b13d1979
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      contrib/docker/build-docker.sh

2
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

Loading…
Cancel
Save