Skip to content
This repository has been archived by the owner on Jan 25, 2023. It is now read-only.

Commit

Permalink
Merge pull request #61 from netlify/address-readlink-issues
Browse files Browse the repository at this point in the history
update to not use readlink
  • Loading branch information
calavera committed May 1, 2017
2 parents 4c69879 + b0657d8 commit 26c9370
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test-tools/start-image.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

BASE_PATH=$(readlink -f $(dirname $(dirname $0)))
REPO_PATH=$(readlink -f $1)
BASE_PATH=$(PWD)
REPO_PATH=$(cd $1 && pwd)

docker run --rm -t -i \
-v ${REPO_PATH}:/opt/repo \
Expand Down

0 comments on commit 26c9370

Please sign in to comment.