diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-04-23 19:54:54 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-04-23 19:54:54 -0300 |
commit | f8783cfcfe7ebdb8e328e37322cf68d908f7e8f9 (patch) | |
tree | a140ae641b16de93003fcb06113abedb9b44519c | |
parent | 5ea22ca5698cdd16a8797ac5d8edb03817946c66 (diff) | |
download | scripts-f8783cfcfe7ebdb8e328e37322cf68d908f7e8f9.tar.gz scripts-f8783cfcfe7ebdb8e328e37322cf68d908f7e8f9.tar.bz2 |
ZTD: check for dangling files
-rwxr-xr-x | ztd | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -15,6 +15,13 @@ elif ! git status &> /dev/null; then status todo postponed + + if [ ! -z "`ls -1 ~/load/`" ]; then + echo "Dangling files at ~/load:" + echo "" + ls -lh ~/load/ + fi + exit fi |