Kaydet (Commit) b8c819c0 authored tarafından Thomas Klausner's avatar Thomas Klausner

Use standard '=' comparison operator for test(1).

üst eee9c05f
...@@ -26,7 +26,7 @@ fi ...@@ -26,7 +26,7 @@ fi
echo echo
read -p "Patching the installation in ${FULLPRODUCTINSTALLLOCATION}. Continue (y/n) ? " -n 1 reply leftover read -p "Patching the installation in ${FULLPRODUCTINSTALLLOCATION}. Continue (y/n) ? " -n 1 reply leftover
echo echo
[ "$reply" == "y" ] || exit 1 [ "$reply" = "y" ] || exit 1
echo echo
echo "About to update the following packages ..." echo "About to update the following packages ..."
...@@ -50,7 +50,7 @@ if [ "x$KDERPM" != "x" ]; then ...@@ -50,7 +50,7 @@ if [ "x$KDERPM" != "x" ]; then
# Check, that $RPMLIST does not contain kde integration rpm (then it is already installed) # Check, that $RPMLIST does not contain kde integration rpm (then it is already installed)
KDERPMINSTALLED=`grep kde-integration ${RPMLIST}` KDERPMINSTALLED=`grep kde-integration ${RPMLIST}`
if [ "x$KDERPMINSTALLED" == "x" ]; then if [ "x$KDERPMINSTALLED" = "x" ]; then
# Install the kde integration rpm # Install the kde integration rpm
RPMLIST="$RPMLIST $KDERPM" RPMLIST="$RPMLIST $KDERPM"
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment