You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Miscellaneous sign and test pipeline fixes:
- fix status file name
- change name of image in mule yaml
- add vars to dynamically account for both algorand and algorand-devtools packages (all channels)
# We're looking for lines that looks like the following:
39
41
#
40
42
# error: Failed dependencies:
41
43
# algorand >= 2.1.86017 is needed by algorand-devtools-2.1.86017-1.x86_64
42
44
#
43
-
if [[ $(cat "$RPMTMP/rpm.install")=~"algorand >= $VERSION is needed by algorand-devtools-$VERSION" ]]
45
+
if [[ $(cat "$RPMTMP/rpm.install")=~"$ALGORAND_PACKAGE_NAME >= $VERSION is needed by $DEVTOOLS_PACKAGE_NAME-$VERSION" ]]
44
46
then
45
-
echo"[$0] The package \`algorand-devtools\` correctly has a dependency on package \`algorand\` and failed to install."
47
+
echo"[$0] The package \`algorand-devtools\` correctly has a dependency on package $ALGORAND_PACKAGE_NAME and failed to install."
46
48
exit 0
47
49
fi
48
50
49
-
echo"[$0] The package \`algorand-devtools\` failed to install because of a missing dependency other than the \`algorand\` package."
51
+
echo"[$0] The package \`algorand-devtools\` failed to install because of a missing dependency other than the $ALGORAND_PACKAGE_NAME package."
50
52
exit 1
51
53
else
52
-
echo"[$0] The package \`algorand-devtools\` was installed without any dependencies, while it should have a dependency on the \`algorand\` package."
54
+
echo"[$0] The package \`algorand-devtools\` was installed without any dependencies, while it should have a dependency on the $ALGORAND_PACKAGE_NAME package."
0 commit comments