From e806292308539771b332b27a82a8069a6472c1f9 Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen.haas@lakedrops.com> Date: Wed, 9 Aug 2023 09:32:25 +0200 Subject: [PATCH] Workaround for https://youtrack.jetbrains.com/issue/IDEA-317355 --- configIdea.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configIdea.sh b/configIdea.sh index 9da5c93..f29d670 100755 --- a/configIdea.sh +++ b/configIdea.sh @@ -35,7 +35,7 @@ fi if [[ -f /drupal/.idea/codeStyles/Project.xml ]]; then grep -q LINE_SEPARATOR /drupal/.idea/codeStyles/Project.xml if [[ $? -eq 0 ]]; then - sed -i "/foo/!{q100}; {s/\bLINE_SEPARATOR\b/d}" /drupal/.idea/codeStyles/Project.xml + sed -i "/\bLINE_SEPARATOR\b/d" /drupal/.idea/codeStyles/Project.xml echo -e "\\033[31m ======================================== \\033[0m" echo -e "\\033[31m IDE setting updated - please restart. \\033[0m" echo -e "\\033[31m ======================================== \\033[0m" -- GitLab