From 1340a5c42aebf7d51264b16c4a14f097efec7e3a Mon Sep 17 00:00:00 2001 From: Matthew McGill <mhollismcgill@gmail.com> Date: Sat, 3 Nov 2018 02:22:18 +0000 Subject: [PATCH] Prefer executing step as .so over .exe if both are available Former-commit-id: 4af895e04910642215c30e022f508ed737fbf4bb --- tools/ps_analyze.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/ps_analyze.sh b/tools/ps_analyze.sh index a3b6fb2d1..cef7c3fc4 100755 --- a/tools/ps_analyze.sh +++ b/tools/ps_analyze.sh @@ -772,7 +772,7 @@ do_plugins() stepname=$i stepname=$(basename $stepname =on) stepname=$(basename $stepname =off) - + echo $builtin_steps | grep $stepname > /dev/null 2> /dev/null if [ $? = 0 ]; then @@ -791,13 +791,13 @@ do_plugins() plugin_path=$SECURITY_TRANSFORMS_HOME/plugins_install/ - # invoke .exe or .sh as a plugin step. - if [ -x $plugin_path/$stepname.exe ]; then + # invoke .so, .exe, or .sh as a plugin step. + if [ -x $plugin_path/lib$stepname.so ]; then + perform_step $stepname none lib$stepname.so $cloneid $value + elif [ -x $plugin_path/$stepname.exe ]; then perform_step $stepname none $plugin_path/$stepname.exe $cloneid $value elif [ -x $plugin_path/$stepname.sh ]; then perform_step $stepname none $plugin_path/$stepname.sh $cloneid $value - elif [ -x $plugin_path/lib$stepname.so ]; then - perform_step $stepname none lib$stepname.so $cloneid $value else echo "*********************************************************" echo "*********************************************************" -- GitLab