From f840ff89009ea5a84245de2b30d0ed2f192f1f8d Mon Sep 17 00:00:00 2001 From: ClausKlein Date: Wed, 20 Apr 2022 20:52:46 +0200 Subject: [PATCH] fix CodFactor issues --- build-taox11-on-linux.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-taox11-on-linux.sh b/build-taox11-on-linux.sh index 304ab16..3d348a4 100755 --- a/build-taox11-on-linux.sh +++ b/build-taox11-on-linux.sh @@ -54,15 +54,15 @@ make c++17=1 -j ${BRIX11_NUMBER_OF_PROCESSORS} -C "${TAOX11_ROOT}/examples" 2>&1 make c++17=1 -j ${BRIX11_NUMBER_OF_PROCESSORS} -C "${TAOX11_ROOT}/tests" 2>&1 | tee -a make-all.log #TODO: workaround to prevent problems with WSL and windows firewall! CK -egrep "^127.0.1.1\s+$HOSTNAME" /etc/hosts && echo "change to 127.0.0.1!" && exit 1 +grep -E "^127.0.1.1\s+$HOSTNAME" /etc/hosts && echo "change to 127.0.0.1!" && exit 1 # make tests "${X11_BASE_ROOT}/bin/brix11" run list -l taox11/bin/taox11_tests.lst -r taox11 2>&1 | tee run-list.log # install make -j ${BRIX11_NUMBER_OF_PROCESSORS} -C "${X11_BASE_ROOT}" install 2>&1 | tee make-install.log -find "${INSTALL_PREFIX}/include" -type d -name home -prune | xargs tree -find "${INSTALL_PREFIX}/include" -type d -name home -prune | xargs rm -rf +find "${INSTALL_PREFIX}/include" -type d -name home -prune -print0 | xargs -0 tree +find "${INSTALL_PREFIX}/include" -type d -name home -prune -print0 | xargs -0 rm -rf #FIXME: remove the installed include garbage! CK rm -rf "${INSTALL_PREFIX}/include"