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 5d3639a commit 389ecf7Copy full SHA for 389ecf7
.github/workflows/Dockerfile_maiko
@@ -26,9 +26,12 @@ RUN cd ${INSTALL_LOCATION}/bin \
26
RUN cd ${INSTALL_LOCATION}/bin \
27
&& arch="$(./machinetype)" \
28
&& if [ "$arch" = "x86_64" ] || [ "$arch" = "aarch64" ]; then \
29
- echo "#!/bin/sh" > osversion \
+ mv osversion oserversion.hold \
30
+ && echo "#!/bin/sh" > osversion \
31
&& echo "echo wsl1" >> osversion \
32
&& ./makeright x cleanup \
33
&& ./makeright x \
- && ./makeright init; \
34
+ && ./makeright init \
35
+ && mv osversion.hold osversion \
36
+ ; \
37
fi
0 commit comments