From c43f0808583070a22e904cd650e8ed17fe781806 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 2 Feb 2014 00:20:19 -0500 Subject: Normalize to use the string "Copyright (C)" --- src/gitget/libregit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gitget/libregit') diff --git a/src/gitget/libregit b/src/gitget/libregit index f89a402..95b59ff 100755 --- a/src/gitget/libregit +++ b/src/gitget/libregit @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# Copyright (c) 2012-2013 Luke Shumaker +# Copyright (C) 2012-2013 Luke Shumaker # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by -- cgit v1.2.3-2-g168b From d25f30f25ce61367c81133c9cd01fe3169d8f6c0 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Fri, 21 Mar 2014 14:39:06 -0400 Subject: Do an audit of copyright and license claims --- src/gitget/libregit | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/gitget/libregit') diff --git a/src/gitget/libregit b/src/gitget/libregit index 95b59ff..25550e5 100755 --- a/src/gitget/libregit +++ b/src/gitget/libregit @@ -2,6 +2,8 @@ # Copyright (C) 2012-2013 Luke Shumaker # +# License: GNU GPLv2+ +# # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or -- cgit v1.2.3-2-g168b From de12756765f573b03821b252a47e68a088090eb0 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 25 May 2014 19:46:35 -0400 Subject: Well... libregit was broken --- src/gitget/libregit | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/gitget/libregit') diff --git a/src/gitget/libregit b/src/gitget/libregit index 25550e5..f3bcfd7 100755 --- a/src/gitget/libregit +++ b/src/gitget/libregit @@ -40,3 +40,5 @@ main() { gitget checkout "${repo}#ref=${ref}" "${dir}" } + +main "$@" -- cgit v1.2.3-2-g168b From b247261b96339a59e74c9d705fe06ab38bd9e634 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 25 May 2014 20:12:34 -0400 Subject: touch up usage() text in src/gitget --- src/gitget/libregit | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/gitget/libregit') diff --git a/src/gitget/libregit b/src/gitget/libregit index f3bcfd7..41aefc3 100755 --- a/src/gitget/libregit +++ b/src/gitget/libregit @@ -20,18 +20,17 @@ . libremessages usage() { - print 'Usage: %s repo ref dir' "${0##*/}" + print 'Usage: %s REPO REF DIR' "${0##*/}" print 'A compatability wrapper around `gitget checkout`' echo prose "This exists because gitget used to be called libregit, and took the arguments in this format, and I'm sure there are a few scripts floating around that use it." echo - prose "Clones or pulls from the git URL 'repo', and checks out the git - ref 'ref' to the directory 'dir'." + prose "Clones or pulls from the git URL '', and checks out the git + ref '' to the directory ''." } - main() { [[ $# == 3 ]] || { usage >&2; return 1; } repo=$1 -- cgit v1.2.3-2-g168b