Procházet zdrojové kódy

Added default (testing) values for repo

Alois Mahdal před 11 roky
rodič
revize
9ddd2be2a2
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2
    2
      lib/SugarTrail.pm

+ 2
- 2
lib/SugarTrail.pm Zobrazit soubor

@@ -7,8 +7,8 @@ use helper;
7 7
 our $VERSION = '0.1';
8 8
 
9 9
 my $r = SugarTrail::Repo->new(
10
-    root    => config->{repo_root},
11
-    vcs     => config->{repo_vcs}
10
+    root    => config->{repo_root}  // "t/data/strepo",
11
+    vcs     => config->{repo_vcs}   // "git"
12 12
 );
13 13
 
14 14