From b349d844f862542e4b6e6ab377ac2e335b8a62c1 Mon Sep 17 00:00:00 2001 From: Benbuck Nason Date: Sun, 12 May 2024 20:47:28 -0700 Subject: [PATCH] Fix workspaces path in build_wamr.sh (#3414) This should match the path inside of .devcontainer/Dockerfile. --- ci/build_wamr.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/build_wamr.sh b/ci/build_wamr.sh index 2ab42f20..1162cbf9 100755 --- a/ci/build_wamr.sh +++ b/ci/build_wamr.sh @@ -14,7 +14,7 @@ docker build \ --cap-add=SYS_PTRACE \ --cpus=".5" \ --memory=4G \ - --mount type=bind,src="${ROOT}",dst=/workspace \ + --mount type=bind,src="${ROOT}",dst=/workspaces \ --name wamr_build_env \ --security-opt=seccomp=unconfined \ wamr_dev_${VARIANT}:0.1 \