aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-05-14 14:02:52 -0300
committerSilvio Rhatto <rhatto@riseup.net>2017-05-14 14:02:52 -0300
commitf10673449dd0720972c36304d0db914db0dfacec (patch)
tree0af69a60f345c88d2e2ad8c9cc43ef5d8053fb9a
parent3c07f63390526c65e569648f2b3bc42465f9e135 (diff)
downloadscripts-f10673449dd0720972c36304d0db914db0dfacec.tar.gz
scripts-f10673449dd0720972c36304d0db914db0dfacec.tar.bz2
Removes uneeded 'done' script
-rwxr-xr-xdone24
1 files changed, 0 insertions, 24 deletions
diff --git a/done b/done
deleted file mode 100755
index 6e95bbd..0000000
--- a/done
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/bash
-#
-# Submit updates to a project.
-#
-
-# Parameters
-PROJECT="$1"
-
-# Try to get there
-if [ ! -z "$PROJECT" ]; then
- cd $PROJECT &> /dev/null || exit 1
-fi
-
-# Sync
-if git status &> /dev/null; then
- if which updates > /dev/null; then
- updates
- else
- git commit -a -m "Updates $PROJECT"
- git push
- fi
-
- git fetch --all
-fi