diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2009-05-08 12:49:40 +0200 |
---|---|---|
committer | Steffen Mueller <smueller@cpan.org> | 2009-05-08 12:49:40 +0200 |
commit | 1e3c652eb4151e62b641752816e9f1039df3703a (patch) | |
tree | f36f7b41d4d32b61c7ea481d66c3efe54de639d2 /Porting/add-package.pl | |
parent | c1413a7f3faf8fb1e44dd192e26d2ae52b8817ce (diff) | |
download | perl-1e3c652eb4151e62b641752816e9f1039df3703a.tar.gz |
git checkout in add-package.pl, not git co
Diffstat (limited to 'Porting/add-package.pl')
-rw-r--r-- | Porting/add-package.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Porting/add-package.pl b/Porting/add-package.pl index 54a4f036c3..c8fe807cf6 100644 --- a/Porting/add-package.pl +++ b/Porting/add-package.pl @@ -55,7 +55,7 @@ else { unless ( $status =~ /nothing to commit/ims ) { die "\nWorking directory not clean. Stopping.\n"; } - system( "git co -b $BranchName blead" ) + system( "git checkout -b $BranchName blead" ) and die "Could not create branch '$BranchName': $?"; print "done\n" if $Verbose; |