Browse Source

try replacing cat with sed

pull/1255/head
UltimateByte 8 years ago
committed by GitHub
parent
commit
b85a1bb18e
  1. 3
      lgsm/functions/mods_core.sh

3
lgsm/functions/mods_core.sh

@ -160,7 +160,8 @@ fn_mod_copy_destination(){
# Check if the mod is already installed and warn the user
fn_mod_already_installed(){
if [ -f "${modslockfilefullpath}" ]; then
if [ -n "$(cat "${modslockfilefullpath}" | grep "${modcommand}")" ]; then
if [ -n "$(sed -n "/^${modcommand}$/p" "${modslockfilefullpath}")" ]; then
fn_print_warning_nl "${modprettyname} has already been installed"
sleep 1
echo " * Config files, if any, might be overwritten."

Loading…
Cancel
Save