added new feature to smokeNsend to pull from main v.s forked repo
Kartik Thakore [Tue, 10 Nov 2009 18:39:59 +0000 (13:39 -0500)]
tools/smokeNsend.pl

index 6967c7f..2cc5f79 100755 (executable)
@@ -1,7 +1,8 @@
 #!perl
 #
-die "Usage: username password [git-branch] [extra options for smolder_smoke_signal]. \n Found @ARGV args" if $#ARGV < 1;
-system split ' ', "git pull origin $ARGV[2]" if $ARGV[2];
+die "Usage: username password [git-branch] [toggle for main repo] [extra options for smolder_smoke_signal]. \n Found @ARGV args" if $#ARGV < 1;
+system split ' ', "git pull origin $ARGV[2]" if ( $ARGV[2] && !($ARGV[3]));
+system split ' ', "git pull git://github.com/kthakore/SDL_perl.git $ARGV[2]" if $ARGV[3];
 system( 'perl',  'Build.PL');
 system( 'perl', 'Build');
 system split ' ', 'prove -l -b -m --archive sdl.tar.gz';