all repos — tint2 @ e10391805080de4346647016efb9cac70bc53fe8

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

Update packaging script for Ubuntu
o9000 mrovi9000@gmail.com
commit

e10391805080de4346647016efb9cac70bc53fe8

parent

f18345ede66020d16c3c54064dd20741b80b24d9

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M packaging/make_ubuntu.shpackaging/make_ubuntu.sh

@@ -1,7 +1,6 @@

#!/bin/bash set -e -set -x rm -rf tint2* 2>/dev/null || true

@@ -20,9 +19,10 @@ echo >&2 "Error: get_version.sh failed!"

exit 1 fi rm -f version.h -VERSION=$(git describe --exact-match 2>/dev/null | sed 's/^v//') +VERSION=$(git describe --exact-match 2>/dev/null) if [ $? -eq 0 ] then + VERSION=$(echo "$VERSION" | sed 's/^v//') REPO="tint2" else VERSION="$(git show -s --pretty=format:%cI.%ct.%h | tr -d ':' | tr -d '-' | tr '.' '-' | sed 's/T[0-9\+]*//g').$MINOR"