all repos — tint2 @ 00930b217d6c936eb36388a38a3e52f611e20b74

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

Fix git version script
o9000 o9000
commit

00930b217d6c936eb36388a38a3e52f611e20b74

parent

0e322b3563e551c2b770bc77c550ea4a54c6b00b

2 files changed, 17 insertions(+), 7 deletions(-)

jump to
M get_version.shget_version.sh

@@ -4,17 +4,27 @@ git update-index -q --ignore-submodules --refresh

# Disallow unstaged changes in the working tree if ! git diff-files --quiet --ignore-submodules -- then - echo >&2 "Error: there are unstaged changes." - git diff-files --name-status -r --ignore-submodules -- >&2 - exit 1 + if [ "$1" = "--strict" ] + then + echo >&2 "Error: there are unstaged changes." + git diff-files --name-status -r --ignore-submodules -- >&2 + exit 1 + else + echo "dirty" + fi fi # Disallow uncommitted changes in the index if ! git diff-index --cached --quiet HEAD --ignore-submodules -- then - echo >&2 "Error: there are uncommitted changes." - git diff-index --cached --name-status -r --ignore-submodules HEAD -- >&2 - exit 1 + if [ "$1" = "--strict" ] + then + echo >&2 "Error: there are uncommitted changes." + git diff-index --cached --name-status -r --ignore-submodules HEAD -- >&2 + exit 1 + else + echo "dirty" + fi fi git describe --exact-match 2>/dev/null || echo "0.11-git$(git show -s --pretty=format:%cI.%h | tr -d ':' | tr -d '-' | tr '.' '-' | sed 's/T[0-9\+]*//g')"
M make_release.shmake_release.sh

@@ -19,7 +19,7 @@ # Finally, to revert to HEAD:

# # git checkout master -VERSION=$(./get_version.sh) +VERSION=$(./get_version.sh --strict) if [ ! $? -eq 0 ] then echo >&2 "Error: get_version.sh failed!"