Skip to content

Commit ff9227d

Browse files
committed
unix: remove absolute path of pwd from mkall.sh
The pwd binary does not always resides under /bin for all Linux distributions. As a $PATH is otherwise always assumed with, here too.
1 parent b52f544 commit ff9227d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unix/mkall.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ if [[ "$GOOS" = "linux" ]]; then
5050
# Use the Docker-based build system
5151
# Files generated through docker (use $cmd so you can Ctl-C the build or run)
5252
$cmd docker build --tag generate:$GOOS $GOOS
53-
$cmd docker run --interactive --tty --volume $(cd -- "$(dirname -- "$0")/.." && /bin/pwd):/build generate:$GOOS
53+
$cmd docker run --interactive --tty --volume $(cd -- "$(dirname -- "$0")/.." && pwd):/build generate:$GOOS
5454
exit
5555
fi
5656

0 commit comments

Comments
 (0)