Skip to content

Commit

Permalink
Close #66 change de default value for prune in the fetch function
Browse files Browse the repository at this point in the history
  • Loading branch information
lakruzz committed Feb 22, 2017
1 parent 544c302 commit 8d91a6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion perl/git-phlow
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@ sub fetch ($){
my %opt = @_;
defined( $opt{die_on_err} ) || do {$opt{die_on_err} = 1};
defined( $opt{purge} ) || do {$opt{purge} = 0};
defined( $opt{prune} ) || do {$opt{prune} = 1};
defined( $opt{prune} ) || do {$opt{prune} = 0};
defined( $opt{local} ) || do {$opt{local} = 0};
defined( $opt{remote} ) || do {$opt{remote} = 0};
defined( $opt{prefix} ) || do {$opt{prefix} = ['delivered'] };
Expand Down

0 comments on commit 8d91a6e

Please sign in to comment.