~hbcoders/easybreezy/trunk

1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

# Make sure we are in the correct directory...
if [ -d "$1"/.bzr ]; then
    bzr qlog "$1"
else
	zenity --error --text="Not a BZR directory. This directory ($1) is not bzr-controlled"
fi