Skip to content

Commit a0e87b6

Browse files
committed
Fix build&test command path
1 parent ceb662a commit a0e87b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build-and-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RESULT=`docker run --rm thecodingmachine/nodejs:${TAG} id -ur`
1313
# If mounted, default user has the id of the mount directory
1414
mkdir user1999 && sudo chown 1999:1999 user1999
1515
ls -al user1999
16-
RESULT=`docker run --rm -v $(pwd)/user1999:$CONTAINER_CWD thecodingmachine/nodejs:${TAG} id -ur`
16+
RESULT=`docker run --rm -v "$(pwd)/user1999:$CONTAINER_CWD" thecodingmachine/nodejs:${TAG} id -ur`
1717
[[ "$RESULT" = "1999" ]]
1818
sudo rm -rf user1999
1919

0 commit comments

Comments
 (0)