# make a nice echoer since we want to use it inside conditions below.
local nicedir="$directory"
if [ $nicedir == "." ]; then
- nicedir=$(\pwd)
+ nicedir="$( \cd . && /bin/pwd )"
+#echo "calculated nicedir as '$nicedir'"
fi
local blatt_report="echo -ne \nchecking in '$nicedir'... "
local tell_no_checkin="echo -ne \nskipping check-in due to presence of $NO_CHECKIN sentinel file: $nicedir"
# showes the branch currently active in the repository.
function show_active_branch()
{
-#hmmm: if no args, assume current dir!
+#hmmm: if no args, assume current dir!?
for directory in "$@"; do
- echo -n "active branch for '$directory': "
+ if [ $directory == "." ]; then
+ directory="$( \cd . && /bin/pwd )"
+#echo "calculated directory as '$directory'"
+ fi
+
+ echo -n -e "$(basename $directory)\n\t=> branch "
pushd "$directory" &>/dev/null
#hmmm: if git...