Commit 742fbe9
committed
Fix download and extraction of NINJA_SYNTAX
* With this Dockerfile:
FROM oraclelinux:10
RUN dnf install git
COPY . /mx
ENV PATH=/mx:$PATH
WORKDIR /mx
RUN mx version
RUN ls -la ~/.mx/cache/NINJA_SYNTAX*
RUN ls -la ~/.mx/cache/NINJA_SYNTAX*/*
RUN ls -la ~/.mx/cache/NINJA_SYNTAX*/*/*
RUN mx path --download NINJA_SYNTAX
RUN ls -la ~/.mx/cache/NINJA_SYNTAX*
RUN ls -la ~/.mx/cache/NINJA_SYNTAX*/*/*
* Before this commit it's clear that ~/.mx/cache/NINJA_SYNTAX*/*/* is empty
and remains empty even after `mx path --download NINJA_SYNTAX`.
* After this commit, NINJA_SYNTAX is downloaded as soon as NinjaProject.resolveDeps is called.1 parent 9dfcc71 commit 742fbe9
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
683 | 683 | | |
684 | 684 | | |
685 | 685 | | |
686 | | - | |
| 686 | + | |
687 | 687 | | |
688 | 688 | | |
689 | 689 | | |
| |||
0 commit comments