Skip to content

Commit

Permalink
Fix indentation in Dockerfile.rpmbuild IF statements
Browse files Browse the repository at this point in the history
  • Loading branch information
neilcook committed Nov 30, 2023
1 parent 9147410 commit 65c58b6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions builder-support/dockerfiles/Dockerfile.rpmbuild
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ RUN cd jsoncpp && mkdir _build && cd _build && cmake .. -DBUILD_SHARED_LIBS=OFF
ARG DROGON_VERSION=v1.7.4
@ENDIF
@IF [ "$BUILDER_RHEL_FLAVOUR" != "amazon" ]
@IF [ "$BUILDER_RHEL_VERSION" = "7" ]
@ IF [ "$BUILDER_RHEL_VERSION" = "7" ]
ARG DROGON_VERSION=v1.7.4
@ENDIF
@IF [ "$BUILDER_RHEL_VERSION" != "7" ]
@ ENDIF
@ IF [ "$BUILDER_RHEL_VERSION" != "7" ]
ARG DROGON_VERSION=v1.9.1
@ENDIF
@ ENDIF
@ENDIF

RUN git clone https://github.com/drogonframework/drogon.git
Expand Down

0 comments on commit 65c58b6

Please sign in to comment.