Skip to content

Commit

Permalink
fix equivalence check
Browse files Browse the repository at this point in the history
  • Loading branch information
TShapinsky committed Jul 21, 2024
1 parent 9369b56 commit 8eec1d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ RUN apt update \

WORKDIR /artifacts
RUN export ARCHITECTURE=x86_64 \
&& if [ $(uname -m) == "aarch64" ]; then export ARCHITECTURE=arm64; fi \
&& if [ "$(uname -m)" = "aarch64" ]; then export ARCHITECTURE=arm64; fi \
&& curl -SfL https://github.com/NREL/EnergyPlus/releases/download/v${ENERGYPLUS_VERSION}/EnergyPlus-${ENERGYPLUS_VERSION}-${ENERGYPLUS_VERSION_SHA}-Linux-Ubuntu22.04-${ARCHITECTURE}.tar.gz -o energyplus.tar.gz \
&& curl -SfL https://github.com/NREL/OpenStudio/releases/download/v${OPENSTUDIO_VERSION}/OpenStudio-${OPENSTUDIO_VERSION}+${OPENSTUDIO_VERSION_SHA}-Ubuntu-22.04-${ARCHITECTURE}.deb -o openstudio.deb

Expand Down

0 comments on commit 8eec1d6

Please sign in to comment.