From a62a275f25a53c675dd3e815463919bd0930a066 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Wed, 5 Sep 2012 13:06:11 -0300 Subject: The logic was backwards :| --- git-shell-commands/change-description | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'git-shell-commands/change-description') diff --git a/git-shell-commands/change-description b/git-shell-commands/change-description index 437833c..120b1cd 100755 --- a/git-shell-commands/change-description +++ b/git-shell-commands/change-description @@ -5,8 +5,7 @@ set -E repo=$1; shift -description="$@" -echo "${repo}.git/${description}" > description +echo "${@}" > ${repo}.git/description exit $? -- cgit v1.2.3-2-g168b From c562e291c0adca7cb7dd2e1ce5ac26e1cd405603 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Sat, 8 Sep 2012 20:00:33 -0300 Subject: Exit on error --- git-shell-commands/change-description | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git-shell-commands/change-description') diff --git a/git-shell-commands/change-description b/git-shell-commands/change-description index 120b1cd..d29eaa8 100755 --- a/git-shell-commands/change-description +++ b/git-shell-commands/change-description @@ -2,7 +2,7 @@ # Allows users to change project description # $ ssh git@host change-description repo "description" -set -E +set -e repo=$1; shift -- cgit v1.2.3-2-g168b From 791d3e1553d0a8b4103bb499fce26688b8cf217a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Sat, 8 Sep 2012 20:11:43 -0300 Subject: Retrieve help --- git-shell-commands/change-description | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'git-shell-commands/change-description') diff --git a/git-shell-commands/change-description b/git-shell-commands/change-description index d29eaa8..c8abdab 100755 --- a/git-shell-commands/change-description +++ b/git-shell-commands/change-description @@ -1,6 +1,7 @@ #!/bin/sh -# Allows users to change project description -# $ ssh git@host change-description repo "description" +# * change-description +# Allows users to change project description +# ssh git@host change-description repo "description" set -e -- cgit v1.2.3-2-g168b From 1a5c75ab9e3540535109fe3be058be298514ce10 Mon Sep 17 00:00:00 2001 From: Ernesto Bazzano Date: Wed, 17 Apr 2013 20:33:31 -0300 Subject: traduccion prelimiar de los hackings --- git-shell-commands/change-description | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git-shell-commands/change-description') diff --git a/git-shell-commands/change-description b/git-shell-commands/change-description index c8abdab..a4cb197 100755 --- a/git-shell-commands/change-description +++ b/git-shell-commands/change-description @@ -1,6 +1,6 @@ #!/bin/sh # * change-description -# Allows users to change project description +# Cambia la descripcion del projecto, necesita archivo description en el proyecto # ssh git@host change-description repo "description" set -e -- cgit v1.2.3-2-g168b From ae95c2980b8aa8459155381a6644027325c6385b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Wed, 11 Sep 2013 01:37:38 -0300 Subject: Test for repo here too... --- git-shell-commands/change-description | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git-shell-commands/change-description') diff --git a/git-shell-commands/change-description b/git-shell-commands/change-description index a4cb197..730777c 100755 --- a/git-shell-commands/change-description +++ b/git-shell-commands/change-description @@ -7,6 +7,6 @@ set -e repo=$1; shift -echo "${@}" > ${repo}.git/description +test -d ${repo}.git && echo "${@}" > ${repo}.git/description exit $? -- cgit v1.2.3-2-g168b