diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-11-11 14:42:05 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-11-11 14:42:05 -0200 |
commit | 5f682f4a1a4b5d09713bafdc1a6ee56ca2fd9c7c (patch) | |
tree | 57abad9d4d0405656aa03e8d1d1d299f0b5dda5a /share/hydractl/sync-media-remotes | |
parent | 1202b38ce04db3be992d9c86054365351acdc437 (diff) | |
download | hydra-5f682f4a1a4b5d09713bafdc1a6ee56ca2fd9c7c.tar.gz hydra-5f682f4a1a4b5d09713bafdc1a6ee56ca2fd9c7c.tar.bz2 |
Change sync-tpc and sync-media-remotes params
Diffstat (limited to 'share/hydractl/sync-media-remotes')
-rwxr-xr-x | share/hydractl/sync-media-remotes | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/share/hydractl/sync-media-remotes b/share/hydractl/sync-media-remotes index 0bff710..1805ac5 100755 --- a/share/hydractl/sync-media-remotes +++ b/share/hydractl/sync-media-remotes @@ -12,17 +12,17 @@ MEDIA="/var/cache/media" if [ -z "$DEST" ]; then echo "usage: $BASENAME <dest>" exit 1 -elif [ ! -d "$DEST/$MEDIA" ]; then - echo "folder $DEST/$MEDIA does not exist." +elif [ ! -d "$DEST" ]; then + echo "folder $DEST does not exist." exit 1 fi # Run for folder in `ls $MEDIA`; do - if [ -d "$DEST/$MEDIA/$folder/.git" ]; then + if [ -d "$DEST/$folder/.git" ]; then # Add new remotes git -C $MEDIA/$folder remote -v | while read remote; do - cd $DEST/$MEDIA/$folder + cd $DEST/$folder name="`echo $remote | cut -d ' ' -f 1`" addr="`echo $remote | cut -d ' ' -f 2`" type="`echo $remote | cut -d ' ' -f 3`" @@ -43,7 +43,7 @@ for folder in `ls $MEDIA`; do done # Delete old remotes - git -C $DEST/$MEDIA/$folder remote -v | while read remote; do + git -C $DEST/$folder remote -v | while read remote; do cd $MEDIA/$folder name="`echo $remote | cut -d ' ' -f 1`" addr="`echo $remote | cut -d ' ' -f 2`" @@ -59,8 +59,8 @@ for folder in `ls $MEDIA`; do if ! git remote -v | sed -e 's/\t/ /g' | grep -q "^$name $addr $type$"; then # Check if was not already removed by a previous command - if git -C $DEST/$MEDIA/$folder remote | grep -q "^$name$"; then - git -C $DEST/$MEDIA/$folder remote $command $name $arg + if git -C $DEST/$folder remote | grep -q "^$name$"; then + git -C $DEST/$folder remote $command $name $arg fi fi done |