1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-02-03 15:13:03 +00:00

Fix Dockerfile_maiko to set execute permissions on osversion while building wsl1 versions of maiko

This commit is contained in:
Frank Halasz
2025-06-03 23:25:35 -07:00
parent 7dd3c90a77
commit b029b98fca

View File

@@ -29,9 +29,11 @@ RUN cd ${INSTALL_LOCATION}/bin \
mv osversion oserversion.hold \
&& echo "#!/bin/sh" > osversion \
&& echo "echo wsl1" >> osversion \
&& chmod ugo+x osversion \
&& ./makeright x cleanup \
&& ./makeright x \
&& ./makeright init \
&& mv osversion.hold osversion \
&& chmod ugo+x osversion \
; \
fi