From 623932398bfedd31f811be2db7a4305ee93c9090 Mon Sep 17 00:00:00 2001 From: Jonathan Campbell Date: Sat, 31 Jan 2015 21:37:05 -0800 Subject: [PATCH] aaargh --- git-source-pickup.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-source-pickup.pl b/git-source-pickup.pl index dc06f7e40..b4ebc5cc3 100755 --- a/git-source-pickup.pl +++ b/git-source-pickup.pl @@ -2,7 +2,7 @@ $project = `git config --get remote.origin.url | sed -e 's/\\/\$//' | sed -e 's/^.*\\///'`; chomp $project; -$poject =~ s/\.git$//; +$project =~ s/\.git$//; die if $project eq ""; $branch = `git branch | grep '^\*' | sed -e 's/^\* //'`; chomp $branch;