From f8252df281baa8495f15270f5fcdc29e9d6af1f7 Mon Sep 17 00:00:00 2001 From: wrobepio Date: Sat, 14 Oct 2023 20:26:29 +0200 Subject: [PATCH] fixed: "compiled-firmware" folder missing under linux - fixed shell variable $PWD --- compile-with-docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile-with-docker.sh b/compile-with-docker.sh index fb5dd01..7fd9433 100644 --- a/compile-with-docker.sh +++ b/compile-with-docker.sh @@ -1,3 +1,3 @@ #!/bin/sh docker build -t uvk5 . -docker run -v $(PWD)/compiled-firmware:/app/compiled-firmware uvk5 /bin/bash -c "cd /app && make && cp firmware* compiled-firmware/" \ No newline at end of file +docker run -v ${PWD}/compiled-firmware:/app/compiled-firmware uvk5 /bin/bash -c "cd /app && make && cp firmware* compiled-firmware/"