From 5709f5a257a1e941273e0fb4ed698240a62bf4b5 Mon Sep 17 00:00:00 2001 From: James Booth Date: Fri, 17 Aug 2012 01:19:58 +0200 Subject: [PATCH 1/3] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index e90fa577..4faad8b3 100644 --- a/README.md +++ b/README.md @@ -103,3 +103,9 @@ Commands in profanity all start with `/`. To get a list of possible commands, and find out how to navigate around try: /help + +Links +----- + +Homepage: http://www.boothj5.com/profanity.shtml +Mailing List: https://groups.google.com/forum/#!forum/profanitydev \ No newline at end of file From 4484c2b03a485ce1070e61a7beb287e3f1478c9a Mon Sep 17 00:00:00 2001 From: James Booth Date: Fri, 17 Aug 2012 01:20:27 +0200 Subject: [PATCH 2/3] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 4faad8b3..8027bc3b 100644 --- a/README.md +++ b/README.md @@ -108,4 +108,5 @@ Links ----- Homepage: http://www.boothj5.com/profanity.shtml + Mailing List: https://groups.google.com/forum/#!forum/profanitydev \ No newline at end of file From 44bb1ced6a0c26f14bcb0743c72a15c8a23bd845 Mon Sep 17 00:00:00 2001 From: Colin Bradley Date: Fri, 17 Aug 2012 16:12:24 +0100 Subject: [PATCH 3/3] Quick hack to check for Fedora 16 and set as Fedora distro. --- install-all.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/install-all.sh b/install-all.sh index 16a9d2ee..110a4228 100755 --- a/install-all.sh +++ b/install-all.sh @@ -90,6 +90,12 @@ if [ $? -eq 0 ]; then DIST=fedora fi +# quick hack check for Fedora 16 +uname -a | grep --ignore-case fc16 +if [ $? -eq 0 ]; then + DIST=fedora +fi + uname -a | grep --ignore-case ubuntu if [ $? -eq 0 ]; then DIST=ubuntu