Skip to content

Commit

Permalink
Allow both relative and absolute path for the volumes.
Browse files Browse the repository at this point in the history
  • Loading branch information
fryckbos committed Oct 14, 2016
1 parent ed7acf6 commit 50c695c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function run {
VOLUMES=""
if [ -e $VOLUMEFILE ]; then
for ENTRY in $(<$VOLUMEFILE); do
VOLUMES="${VOLUMES}-v $(pwd)/${ENTRY} "
VOLUMES="${VOLUMES}-v `realpath ${ENTRY}` "
done
fi

Expand Down

0 comments on commit 50c695c

Please sign in to comment.