From: Kienan Stewart Date: Fri, 3 Nov 2023 13:24:20 +0000 (-0400) Subject: Add project status to readme X-Git-Url: https://git.lttng.org/?p=lttngtop.git;a=commitdiff_plain;h=HEAD;hp=c89768e2b5dd11b5f606fa03675729919a602f37;ds=inline Add project status to readme Signed-off-by: Kienan Stewart --- diff --git a/README b/README index d65121d..813c994 100644 --- a/README +++ b/README @@ -1,3 +1,13 @@ +Project Status +-------------- + +LTTngTop is not currently maintained. Those interested in supporting continued +efforts on this or other LTTng projects may contact +EfficiOS `_. + + +ABOUT +----- LTTngTop Julien Desfossez June 2015 diff --git a/utils/lttngtop-live-simple.sh b/utils/lttngtop-live-simple.sh index 6d1f6ed..d4de83f 100755 --- a/utils/lttngtop-live-simple.sh +++ b/utils/lttngtop-live-simple.sh @@ -64,6 +64,6 @@ lttngtop -r $(echo $s|cut -d' ' -f1) lttng destroy $SESSION_NAME >/dev/null echo -n "Destroy $HOME/lttng-traces/$HOSTNAME/${SESSION_NAME}* (Y/n) ? " read a -if test $a = 'y' -o $a = 'Y'; then +if test -z "$a" -o "$a" = 'y' -o "$a" = 'Y'; then rm -rf $HOME/lttng-traces/$HOSTNAME/${SESSION_NAME}* fi