Skip to content

Commit

Permalink
Update scorpio
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-fox committed Sep 3, 2024
1 parent e175aaa commit 085f221
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/fiware/core/scorpio-at-context-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ for i in "$@" ; do
fi
if [[ $i == "quay" ]]; then
clone "$SOURCE" java-kafka-"$VERSION" "$QUAY_TARGET" true
clone "$SOURCE" ubuntu-kafka-"$VERSION" "$QUAY_TARGET"
clone "$SOURCE" ubuntu-kafka-"$VERSION" "$QUAY_TARGET" || true
fi
echo ""
done
Expand Down
4 changes: 2 additions & 2 deletions .github/fiware/core/scorpio-entity-manager.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ function clone {
for i in "$@" ; do
if [[ $i == "docker" ]]; then
clone "$SOURCE" java-kafka-"$VERSION" "$DOCKER_TARGET" true
clone "$SOURCE" ubuntu-kafka-"$VERSION" "$DOCKER_TARGET" || true
#clone "$SOURCE" ubuntu-kafka-"$VERSION" "$DOCKER_TARGET" || true
fi
if [[ $i == "quay" ]]; then
clone "$SOURCE" java-kafka-"$VERSION" "$QUAY_TARGET" true
clone "$SOURCE" ubuntu-kafka-"$VERSION" "$QUAY_TARGET"
#clone "$SOURCE" ubuntu-kafka-"$VERSION" "$QUAY_TARGET" || true
fi
echo ""
done
Expand Down
2 changes: 1 addition & 1 deletion .github/fiware/core/scorpio-history-query.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ for i in "$@" ; do
fi
if [[ $i == "quay" ]]; then
clone "$SOURCE" java-kafka-"$VERSION" "$QUAY_TARGET" true
clone "$SOURCE" ubuntu-kafka-"$VERSION" "$QUAY_TARGET"
clone "$SOURCE" ubuntu-kafka-"$VERSION" "$QUAY_TARGET" || true
fi
echo ""
done
Expand Down
4 changes: 2 additions & 2 deletions .github/fiware/core/scorpio-query-manager.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ function clone {
for i in "$@" ; do
if [[ $i == "docker" ]]; then
clone "$SOURCE" java-kafka-"$VERSION" "$DOCKER_TARGET" true
clone "$SOURCE" ubuntu-kafka-"$VERSION" "$DOCKER_TARGET" || true
# clone "$SOURCE" ubuntu-kafka-"$VERSION" "$DOCKER_TARGET" || true
fi
if [[ $i == "quay" ]]; then
clone "$SOURCE" java-kafka-"$VERSION" "$QUAY_TARGET" true
clone "$SOURCE" ubuntu-kafka-"$VERSION" "$QUAY_TARGET"
# clone "$SOURCE" ubuntu-kafka-"$VERSION" "$QUAY_TARGET" || true
fi
echo ""
done
Expand Down
4 changes: 2 additions & 2 deletions .github/fiware/core/scorpio-registry-manager.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ function clone {
for i in "$@" ; do
if [[ $i == "docker" ]]; then
clone "$SOURCE" java-kafka-"$VERSION" "$DOCKER_TARGET" true
clone "$SOURCE" ubuntu-kafka-"$VERSION" "$DOCKER_TARGET" || true
# clone "$SOURCE" ubuntu-kafka-"$VERSION" "$DOCKER_TARGET" || true
fi
if [[ $i == "quay" ]]; then
clone "$SOURCE" java-kafka-"$VERSION" "$QUAY_TARGET" true
clone "$SOURCE" ubuntu-kafka-"$VERSION" "$QUAY_TARGET"
# clone "$SOURCE" ubuntu-kafka-"$VERSION" "$QUAY_TARGET" || true
fi
echo ""
done
Expand Down
4 changes: 2 additions & 2 deletions .github/fiware/core/scorpio-subscription-manager.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ function clone {
for i in "$@" ; do
if [[ $i == "docker" ]]; then
clone "$SOURCE" java-kafka-"$VERSION" "$DOCKER_TARGET" true
clone "$SOURCE" ubuntu-kafka-"$VERSION" "$DOCKER_TARGET" || true
# clone "$SOURCE" ubuntu-kafka-"$VERSION" "$DOCKER_TARGET" || true
fi
if [[ $i == "quay" ]]; then
clone "$SOURCE" java-kafka-"$VERSION" "$QUAY_TARGET" true
clone "$SOURCE" ubuntu-kafka-"$VERSION" "$QUAY_TARGET"
# clone "$SOURCE" ubuntu-kafka-"$VERSION" "$QUAY_TARGET" || true
fi
echo ""
done
Expand Down
4 changes: 2 additions & 2 deletions .github/fiware/core/scorpio-subscription-registry.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ function clone {
for i in "$@" ; do
if [[ $i == "docker" ]]; then
clone "$SOURCE" java-kafka-"$VERSION" "$DOCKER_TARGET" true
clone "$SOURCE" ubuntu-kafka-"$VERSION" "$DOCKER_TARGET" || true
# clone "$SOURCE" ubuntu-kafka-"$VERSION" "$DOCKER_TARGET" || true
fi
if [[ $i == "quay" ]]; then
clone "$SOURCE" java-kafka-"$VERSION" "$QUAY_TARGET" true
clone "$SOURCE" ubuntu-kafka-"$VERSION" "$QUAY_TARGET"
# clone "$SOURCE" ubuntu-kafka-"$VERSION" "$QUAY_TARGET" || true
fi
echo ""
done
Expand Down
8 changes: 4 additions & 4 deletions .github/fiware/core/scorpio.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ for i in "$@" ; do
if [[ $i == "docker" ]]; then
clone "$SOURCE" java-"$VERSION" "$DOCKER_TARGET" true
clone "$SOURCE" java-kafka-"$VERSION" "$DOCKER_TARGET"
clone "$SOURCE" ubuntu-"$VERSION" "$DOCKER_TARGET"
clone "$SOURCE" ubuntu-kafka-"$VERSION" "$DOCKER_TARGET"
#clone "$SOURCE" ubuntu-"$VERSION" "$DOCKER_TARGET"
#clone "$SOURCE" ubuntu-kafka-"$VERSION" "$DOCKER_TARGET"
fi
if [[ $i == "quay" ]]; then
clone "$SOURCE" java-"$VERSION" "$QUAY_TARGET" true
clone "$SOURCE" java-kafka-"$VERSION" "$QUAY_TARGET"
clone "$SOURCE" ubuntu-"$VERSION" "$QUAY_TARGET"
clone "$SOURCE" ubuntu-kafka-"$VERSION" "$QUAY_TARGET"
#clone "$SOURCE" ubuntu-"$VERSION" "$QUAY_TARGET"
#clone "$SOURCE" ubuntu-kafka-"$VERSION" "$QUAY_TARGET"
fi
echo ""
done
Expand Down

0 comments on commit 085f221

Please sign in to comment.