We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93a7863 commit ea14a9dCopy full SHA for ea14a9d
.gitmodules
@@ -1,6 +1,3 @@
1
[submodule "lib/pico-sdk"]
2
path = lib/pico-sdk
3
url = https://github.com/raspberrypi/pico-sdk.git
4
-[submodule "pico-sdk"]
5
- path = pico-sdk
6
- url = https://github.com/raspberrypi/pico-sdk.git
Dockerfile
@@ -24,7 +24,9 @@ RUN echo "export PICO_SDK_PATH=/opt/picomotion/lib/pico-sdk" >> ~/.bashrc
24
WORKDIR /opt/picomotion
25
RUN git submodule init && git submodule update --recursive
26
# Create a build directory
27
-RUN mkdir build && cd build && cmake .. && make -j$(nproc)
+RUN mkdir build
28
+RUN cd build && cmake ..
29
+RUN make -j$(nproc)
30
31
FROM ubuntu:20.04
32
0 commit comments