aboutsummaryrefslogtreecommitdiffstats
path: root/t/bin.pm
blob: ad5b7f18b710b3ed409a3d89bcd34e922a3c17d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package Bin;

use strict;
use warnings;

use Exporter qw(import);
our @EXPORT = qw($BIN);

use File::Spec;

our $BIN = File::Spec->rel2abs('git-branch-list');

1;