Skip to content

Commit ba1119b

Browse files
authored
Minor fixup: Do not extract iasl nuget package to root (#505)
Do not extract iasl nuget package to root, because of which we are not cleaning the `iasl` completely because the following line `cd .. && rm -rf iasl_temp` assumes all the extracted contents are in `iasl_temp` Signed-off-by: Vineel Kovvuri[MSFT] <[email protected]> Signed-off-by: Vineel Kovvuri[MSFT] <[email protected]>
1 parent 0e69e89 commit ba1119b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Containers/Ubuntu-22/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ RUN wget -O - https://www.nasm.us/pub/nasm/releasebuilds/${NASM_VERSION}/nasm-${
106106

107107
RUN mkdir -p iasl_temp && cd iasl_temp && \
108108
wget -O iasl_${IASL_VERSION}.nupkg "https://pkgs.dev.azure.com/projectmu/acpica/_apis/packaging/feeds/mu_iasl/nuget/packages/edk2-acpica-iasl/versions/${IASL_VERSION}/content?api-version=6.0-preview.1" && \
109-
unzip iasl_${IASL_VERSION}.nupkg -d /iasl_pkg_contents && \
110-
cp /iasl_pkg_contents/edk2-acpica-iasl/Linux-x86/iasl /usr/bin/iasl && chmod +x /usr/bin/iasl && \
109+
unzip iasl_${IASL_VERSION}.nupkg -d iasl_pkg_contents && \
110+
cp iasl_pkg_contents/edk2-acpica-iasl/Linux-x86/iasl /usr/bin/iasl && chmod +x /usr/bin/iasl && \
111111
cd .. && rm -rf iasl_temp
112112

113113
RUN wget -q "https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/packages-microsoft-prod.deb" && \

Containers/Ubuntu-24/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ RUN wget -O - https://www.nasm.us/pub/nasm/releasebuilds/${NASM_VERSION}/nasm-${
103103

104104
RUN mkdir -p iasl_temp && cd iasl_temp && \
105105
wget -O iasl_${IASL_VERSION}.nupkg "https://pkgs.dev.azure.com/projectmu/acpica/_apis/packaging/feeds/mu_iasl/nuget/packages/edk2-acpica-iasl/versions/${IASL_VERSION}/content?api-version=6.0-preview.1" && \
106-
unzip iasl_${IASL_VERSION}.nupkg -d /iasl_pkg_contents && \
107-
cp /iasl_pkg_contents/edk2-acpica-iasl/Linux-x86/iasl /usr/bin/iasl && chmod +x /usr/bin/iasl && \
106+
unzip iasl_${IASL_VERSION}.nupkg -d iasl_pkg_contents && \
107+
cp iasl_pkg_contents/edk2-acpica-iasl/Linux-x86/iasl /usr/bin/iasl && chmod +x /usr/bin/iasl && \
108108
cd .. && rm -rf iasl_temp
109109

110110
RUN wget -q "https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/packages-microsoft-prod.deb" && \

0 commit comments

Comments
 (0)