projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
3a554b6
)
(travis) Correctly detect CI on github forks
Peter Rabbitson [Tue, 19 May 2015 12:30:03 +0000 (14:30 +0200)]
t/lib/DBICTest/RunMode.pm
patch
|
blob
|
blame
|
history
diff --git
a/t/lib/DBICTest/RunMode.pm
b/t/lib/DBICTest/RunMode.pm
index
39661a1
..
ee16bc1
100644
(file)
--- a/
t/lib/DBICTest/RunMode.pm
+++ b/
t/lib/DBICTest/RunMode.pm
@@
-208,7
+208,7
@@
sub is_ci {
return (
($ENV{TRAVIS}||'') eq 'true'
and
- ($ENV{TRAVIS_REPO_SLUG}||'') eq 'dbsrgits/dbix-class'
+ ($ENV{TRAVIS_REPO_SLUG}||'') =~ m|\w+/dbix-class$|
)
}