aboutsummaryrefslogtreecommitdiffstats
path: root/profile.d/msec.sh
diff options
context:
space:
mode:
authordaviddavid <geiger.david68210@gmail.com>2023-05-05 20:10:59 +0200
committerdaviddavid <geiger.david68210@gmail.com>2023-05-05 20:10:59 +0200
commit2a313e34944dea4f62f215c3426a34a5417311ed (patch)
tree6b42401ad990d2616de75da7cdb906ceb844f119 /profile.d/msec.sh
parentb1e067bca79bc5b2c97e8f016d69d3ae68c61eba (diff)
downloadmsec-2a313e34944dea4f62f215c3426a34a5417311ed.tar
msec-2a313e34944dea4f62f215c3426a34a5417311ed.tar.gz
msec-2a313e34944dea4f62f215c3426a34a5417311ed.tar.bz2
msec-2a313e34944dea4f62f215c3426a34a5417311ed.tar.xz
msec-2a313e34944dea4f62f215c3426a34a5417311ed.zip
Really use `grep -F` instead of deprecated `fgrep`
Diffstat (limited to 'profile.d/msec.sh')
-rwxr-xr-xprofile.d/msec.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/profile.d/msec.sh b/profile.d/msec.sh
index 2b1a7a5..680f7fe 100755
--- a/profile.d/msec.sh
+++ b/profile.d/msec.sh
@@ -20,7 +20,7 @@ else
fi
if [ "$ALLOW_CURDIR_IN_PATH" == "yes" ]; then
- if ! echo ${PATH} | grep -E -q :.; then
+ if ! echo ${PATH} | grep -F -q :.; then
export PATH=$PATH:.
fi
fi