summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-08-06 18:32:24 +0200
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-08-06 18:32:24 +0200
commit2d1ce254701c8018a7f52975378def0b8733d4a9 (patch)
treefbcf7dc9ec32c5f1aad696966652592b0f384fc0
parent97746e42bf4f832c0c69f7cc5e7927446614fe38 (diff)
downloadbundler-vendorize_artifice.tar.gz
More WIP, don't know what I'm doingvendorize_artifice
-rw-r--r--.travis.yml8
-rw-r--r--Rakefile2
2 files changed, 5 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index fa79804507..1c47c49b41 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,10 +1,10 @@
language: ruby
dist: xenial
-script: rake spec:travis
+script: bin/rake spec:travis
before_script:
- - travis_retry rake override_version
- - travis_retry rake spec:travis:deps
- - travis_retry rake man:build
+ - travis_retry bin/rake override_version
+ - travis_retry bin/rake spec:travis:deps
+ - travis_retry bin/rake man:build
branches:
only:
diff --git a/Rakefile b/Rakefile
index d406392aac..7035f7af42 100644
--- a/Rakefile
+++ b/Rakefile
@@ -134,7 +134,7 @@ namespace :spec do
desc "Run the tests on Travis CI against a RubyGem version (using ENV['RGV'])"
task :travis do
- rg = "co" if ENV["RGV"].nil? || File.directory?(File.expand_path(ENV["RGV"]))
+ rg = "co" if ENV["RGV"].nil? || ENV["RGV"].empty? || File.directory?(File.expand_path(ENV["RGV"]))
# disallow making network requests on CI
ENV["BUNDLER_SPEC_PRE_RECORDED"] = "TRUE"