Skip to content

Commit

Permalink
update data package parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
kernelsam committed Oct 4, 2024
1 parent 66c6970 commit 2200384
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions linux/install-senzing.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ configure-vars() {
packages=($PACKAGES_TO_INSTALL)
for package in "${packages[@]}"
do
updated_packages+="$package=$SENZING_INSTALL_VERSION* "
if [[ ! $package ~= *"senzingdata-v"* ]]; then
updated_packages+="$package=$SENZING_INSTALL_VERSION* "
else
updated_packages+="$package "
fi
done
SENZING_PACKAGES="$updated_packages"

Expand All @@ -61,7 +65,11 @@ configure-vars() {
packages=($PACKAGES_TO_INSTALL)
for package in "${packages[@]}"
do
updated_packages+="$package=$SENZING_INSTALL_VERSION "
if [[ ! $package ~= *"senzingdata-v"* ]]; then
updated_packages+="$package=$SENZING_INSTALL_VERSION "
else
updated_packages+="$package "
fi
done
SENZING_PACKAGES="$updated_packages"

Expand Down

0 comments on commit 2200384

Please sign in to comment.