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.
2 parents 98fee66 + 2590a7b commit d0bef2dCopy full SHA for d0bef2d
Dockerfile
@@ -17,7 +17,7 @@ RUN pacman -Sy --noconfirm \
17
ruby-rake \
18
ruby-bundler
19
20
-RUN git clone https://github.com/raspberrypi/pico-sdk.git -b 1.4.0
+RUN git clone https://github.com/raspberrypi/pico-sdk.git -b 1.5.0
21
RUN cd /pico-sdk/lib && git submodule update --init ./
22
ENV PICO_SDK_PATH "/pico-sdk"
23
Rakefile
@@ -51,7 +51,7 @@ end
51
52
task :check_pico_sdk => :check_pico_sdk_path do
53
FileUtils.cd ENV["PICO_SDK_PATH"] do
54
- unless `git status --branch`.split("\n")[0].end_with?(PICO_SDK_TAG)
+ unless `git describe --tags`.strip.end_with?(PICO_SDK_TAG)
55
raise <<~MSG
56
pico-sdk #{PICO_SDK_TAG} is not checked out!\n
57
Tips for dealing with:\n
0 commit comments