diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-12-20 15:57:04 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-12-20 15:57:04 -0200 |
commit | 7f583e23039286b17ff508a0d692e8b8e000e711 (patch) | |
tree | 63f8e3058de4e049fe0bdd32f6c1330d39cdc5ac | |
parent | 0ea9022f39dfb41ca54ce0270651bc144bcd9126 (diff) | |
download | hydra-7f583e23039286b17ff508a0d692e8b8e000e711.tar.gz hydra-7f583e23039286b17ff508a0d692e8b8e000e711.tar.bz2 |
Fixes git remote add at sync-media
-rwxr-xr-x | share/hydractl/sync-media | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/hydractl/sync-media b/share/hydractl/sync-media index a15e8b7..000909f 100755 --- a/share/hydractl/sync-media +++ b/share/hydractl/sync-media @@ -127,7 +127,7 @@ function sync_media_ensure_remote { fi if ! git remote | grep -q "^$remote$"; then - echo git remote add $remote $path + git remote add $remote $path fi } |