scripts

misc scripts and tools
git clone git://git.2f30.org/scripts
Log | Files | Refs

commit beb20737150b43af1faf957bf1845f8f18eb9d31
parent 6fe80b4ed5edb6951a5ae5b1e4156539d20c9d13
Author: dsp <dsp@2f30.org>
Date:   Fri, 17 Apr 2015 12:18:46 -0600

removing my idiotic linuxism of unlink in favor of rm

Diffstat:
Mgogithub | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gogithub b/gogithub @@ -39,7 +39,7 @@ unmask() { echo "package has been not been masked." exit 1 fi - unlink $GOPATH/src/github.com/$1 + rm $GOPATH/src/github.com/$1 mv $GOPATH/src/github.com/$1-upstream $GOPATH/src/github.com/$1 exit 0 }