~hbcoders/easybreezy/trunk

1 by RJL situp
Initial version (from nemo_actions internal project) for Launchpad use
1
#!/bin/bash
2
3
# Make sure we are in the correct directory...
4
if [ -d "$1"/.bzr ]; then
5
    bzr status "$1" | zenity --text-info  --width=750 --height=500
6
else
7
	zenity --error --text="Not a BZR directory. This directory ($1) is not bzr-controlled"
8
fi
9
10
11