Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
glpatcern committed Oct 16, 2023
1 parent 71a01ff commit daba744
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/sciencemesh/scripts/gencerts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ createCert revad2
for efss in owncloud nextcloud cernbox; do
createCert reva${efss}1
createCert reva${efss}2
[[ "${efss}" -ne "cernbox" ]] && createCert ${efss}1
[[ "${efss}" -ne "cernbox" ]] && createCert ${efss}2
[ "${efss}" != "cernbox" ] && createCert ${efss}1
[ "${efss}" != "cernbox" ] && createCert ${efss}2
createCert wopi${efss}1
createCert wopi${efss}2
done
4 changes: 2 additions & 2 deletions tests/sciencemesh/scripts/stub.js
Original file line number Diff line number Diff line change
Expand Up @@ -278,10 +278,10 @@ const server = https.createServer(HTTPS_OPTIONS, async (req, res) => {
const config = {
nextcloud1: "https://nextcloud1.docker/index.php/apps/sciencemesh/accept",
owncloud1: "https://owncloud1.docker/index.php/apps/sciencemesh/accept",
cernbox1: "https://cernbox1.docker/sciencemesh-app/invitations",
cernbox1: "https://revacernbox1.docker/sciencemesh-app/invitations",
nextcloud2: "https://nextcloud2.docker/index.php/apps/sciencemesh/accept",
owncloud2: "https://owncloud2.docker/index.php/apps/sciencemesh/accept",
cernbox2: "https://cernbox2.docker/sciencemesh-app/invitations",
cernbox2: "https://revacernbox2.docker/sciencemesh-app/invitations",
stub2: "https://stub.docker/ocm/invites/forward",
};
const items = [];
Expand Down

0 comments on commit daba744

Please sign in to comment.