mirror of
https://github.com/Interlisp/maiko.git
synced 2026-04-19 16:40:18 +00:00
Fixing various typos
This commit is contained in:
2
.github/workflows/Dockerfile_builder
vendored
2
.github/workflows/Dockerfile_builder
vendored
@@ -8,7 +8,7 @@
|
|||||||
#
|
#
|
||||||
# ******************************************************************************
|
# ******************************************************************************
|
||||||
|
|
||||||
FROM ubuntu:latet
|
FROM ubuntu:latest
|
||||||
SHELL ["/bin/bash", "-c"]
|
SHELL ["/bin/bash", "-c"]
|
||||||
USER root:root
|
USER root:root
|
||||||
# Install build tools
|
# Install build tools
|
||||||
|
|||||||
5
.github/workflows/Dockerfile_maiko
vendored
5
.github/workflows/Dockerfile_maiko
vendored
@@ -12,13 +12,14 @@
|
|||||||
|
|
||||||
FROM ghcr.io/interlisp/maiko-builder
|
FROM ghcr.io/interlisp/maiko-builder
|
||||||
ARG INSTALL_LOCATION=/usr/local/interlisp/maiko
|
ARG INSTALL_LOCATION=/usr/local/interlisp/maiko
|
||||||
|
SHELL ["/bin/bash", "-c"]
|
||||||
# Copy over / clean maiko repo
|
# Copy over / clean maiko repo
|
||||||
COPY . ${INSTALL_LOCATION}
|
COPY . ${INSTALL_LOCATION}
|
||||||
# Build maiko
|
# Build maiko
|
||||||
RUN cd ${INSTALL_LOCATION}/bin \
|
RUN cd ${INSTALL_LOCATION}/bin \
|
||||||
&& ./makeright x cleanup\
|
&& ./makeright x cleanup \
|
||||||
&& ./makeright x
|
&& ./makeright x
|
||||||
RUN cd ${INSTALL_LOCATION}/bin \
|
RUN cd ${INSTALL_LOCATION}/bin \
|
||||||
&& if [[ "$(./osversion)" != "linux" || "$(./mchinetype)" = "x86_64" ]]; then \
|
&& if [ "$(./machinetype)" = "x86_64" ]; then \
|
||||||
./makeright init; \
|
./makeright init; \
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user