diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-05-31 18:03:01 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-05-31 18:03:01 -0300 |
commit | d4d0b11efca44d8408fb1590a7c2087c9b41f515 (patch) | |
tree | 8fccc12d778dc2ad6f3a53a03c032cd1ca289fc0 /files | |
parent | c2438e75d308517bd9cc692ac1036257be7911c0 (diff) | |
download | puppet-backup-d4d0b11efca44d8408fb1590a7c2087c9b41f515.tar.gz puppet-backup-d4d0b11efca44d8408fb1590a7c2087c9b41f515.tar.bz2 |
Minor fix
Diffstat (limited to 'files')
-rw-r--r-- | files/sync-media-init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/sync-media-init b/files/sync-media-init index aee3541..c12ad7f 100644 --- a/files/sync-media-init +++ b/files/sync-media-init @@ -46,7 +46,7 @@ for file in `ls $MEDIA`; do echo Processing "$MEDIA/$file..." cd $MEDIA/$file - if git remotes | grep -q "^origin$"; then + if git remote | grep -q "^origin$"; then echo "Removing origin..." git remote rm origin fi |