From 5364a75b260dd4f06d4d5e9c14b1dde798694e6a Mon Sep 17 00:00:00 2001 From: evilsocket Date: Sat, 24 Feb 2018 23:17:57 +0100 Subject: [PATCH] misc: small fix or general refactoring i did not bother commenting --- README.md | 2 ++ changelog.sh | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e74de359..6f854c62 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,8 @@ This command will download bettercap, install its dependencies, compile it and m Now you can use `sudo bettercap -h` to show the basic command line options and just `sudo bettercap` to start an [interactive session](https://github.com/bettercap/bettercap/wiki/Interactive-Mode) on your default network interface, otherwise you can [load a caplet](https://github.com/bettercap/bettercap/wiki/Caplets) from [the dedicated repository](https://github.com/bettercap/caplets). +## Documentation and Examples + The project is documented [in this wiki](https://github.com/bettercap/bettercap/wiki). ## Update diff --git a/changelog.sh b/changelog.sh index c993dd6d..902ae48c 100755 --- a/changelog.sh +++ b/changelog.sh @@ -6,10 +6,10 @@ MISC=() echo "@ Fetching remote tags ..." -git fetch --tags > /dev/null +# git fetch --tags > /dev/null CURTAG=$(git describe --tags --abbrev=0) -OUTPUT=$(git log $CURTAG..HEAD --oneline) +OUTPUT=$(git log v2.0.0RC1..HEAD --oneline) IFS=$'\n' LINES=($OUTPUT) for LINE in "${LINES[@]}"; do