Skip to content

Commit 68ece72

Browse files
author
Jonathan Visser
committed
Fix syntax for switching magento versions to test
1 parent 456dde3 commit 68ece72

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

ci/build/Dockerfile

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,6 @@ RUN apt-get install -y --no-install-recommends \
8484
# Confirm NodeJS & NPM are installed
8585
RUN node -v && npm -v
8686

87-
COPY id_ed25519 /root/.ssh/id_rsa
88-
RUN mkdir -p /root/.ssh \
89-
&& chmod -vf 700 /root/.ssh \
90-
&& (chmod -vf 600 /root/.ssh/* || true) \
91-
&& chmod -vf 700 /etc/ssh \
92-
&& chmod -vf 600 /etc/ssh/*
93-
9487
COPY ./.git /hypernode/.git
9588
COPY ./bin /hypernode/bin
9689
COPY ./ci /hypernode/ci

ci/test/run-general.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ else
1010
export IMAGE_OS="buster"
1111
fi
1212

13-
if [[ "${PHP_VERSION:-8.2}" == "8.0" | "${PHP_VERSION:-8.2}" == "8.1" ]]; then
13+
if [[ "${PHP_VERSION:-8.2}" == "8.0" || "${PHP_VERSION:-8.2}" == "8.1" ]]; then
1414
export MAGENTO_VERSION="2.4.6-p10"
1515
else
1616
export MAGENTO_VERSION="2.4.8"

0 commit comments

Comments
 (0)