@jahia/cypress 3.14.2 → 3.14.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/env.Dockerfile +1 -1
- package/env.run.sh +5 -5
- package/package.json +1 -1
package/env.Dockerfile
CHANGED
|
@@ -21,6 +21,6 @@ COPY --chown=jahians:jahians . /home/jahians
|
|
|
21
21
|
|
|
22
22
|
RUN CI=true /home/jahians/node_modules/.bin/cypress install
|
|
23
23
|
|
|
24
|
-
|
|
24
|
+
RUN mkdir -p .m2; cp maven.settings.xml .m2/settings.xml; exit 0
|
|
25
25
|
|
|
26
26
|
CMD /bin/bash -c /home/jahians/env.run.sh
|
package/env.run.sh
CHANGED
|
@@ -9,11 +9,11 @@ bash $BASEDIR/env.provision.sh
|
|
|
9
9
|
source $BASEDIR/set-env.sh
|
|
10
10
|
|
|
11
11
|
echo "$(date +'%d %B %Y - %k:%M') == Fetching the list of installed modules =="
|
|
12
|
-
npx --yes @jahia/jahia-reporter@latest utils:modules \
|
|
13
|
-
--moduleId
|
|
14
|
-
--jahiaUrl
|
|
15
|
-
--jahiaPassword
|
|
16
|
-
--filepath
|
|
12
|
+
bash -c "unset npm_config_package; npx --yes @jahia/jahia-reporter@latest utils:modules \
|
|
13
|
+
--moduleId=\"${MODULE_ID}\" \
|
|
14
|
+
--jahiaUrl=\"${JAHIA_URL}\" \
|
|
15
|
+
--jahiaPassword=\"${SUPER_USER_PASSWORD}\" \
|
|
16
|
+
--filepath=\"results/installed-jahia-modules.json\""
|
|
17
17
|
echo "$(date +'%d %B %Y - %k:%M') == Modules fetched =="
|
|
18
18
|
INSTALLED_MODULE_VERSION=$(cat results/installed-jahia-modules.json | jq '.module.version')
|
|
19
19
|
if [[ $INSTALLED_MODULE_VERSION == "UNKNOWN" ]]; then
|