Skip to content

Commit ea14a9d

Browse files
committed
more changes to fix submodule
1 parent 93a7863 commit ea14a9d

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.gitmodules

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
[submodule "lib/pico-sdk"]
22
path = lib/pico-sdk
33
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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ RUN echo "export PICO_SDK_PATH=/opt/picomotion/lib/pico-sdk" >> ~/.bashrc
2424
WORKDIR /opt/picomotion
2525
RUN git submodule init && git submodule update --recursive
2626
# Create a build directory
27-
RUN mkdir build && cd build && cmake .. && make -j$(nproc)
27+
RUN mkdir build
28+
RUN cd build && cmake ..
29+
RUN make -j$(nproc)
2830

2931
FROM ubuntu:20.04
3032

0 commit comments

Comments
 (0)