summaryrefslogtreecommitdiff
path: root/status.sh
diff options
context:
space:
mode:
Diffstat (limited to 'status.sh')
-rwxr-xr-xstatus.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/status.sh b/status.sh
index dcc5fad..5112177 100755
--- a/status.sh
+++ b/status.sh
@@ -1,11 +1,14 @@
#!/bin/bash
function status {
+ if [ ! -d "$1" ]; then
+ return
+ fi
DIR=`pwd`
- cd $1
+ cd "$1"
STR=`git diff --name-only`
STR2=`git status|grep "Your branch is ahead"`
- if [[ -n ${STR}${STR2} ]]; then
+ if [[ -n "${STR}${STR2}" ]]; then
echo -e "$2:"
if [[ -n ${STR} ]]; then
echo -e "\e[1;31m${STR}"
@@ -24,3 +27,4 @@ status server-code server-code
status server-data server-data
status tools tools
status server-code/src/evol evol-hercules
+status music music