diff --git a/omnibus/omnibus.rb b/omnibus/omnibus.rb index 3d9272d3d..74d8c22b7 100644 --- a/omnibus/omnibus.rb +++ b/omnibus/omnibus.rb @@ -14,7 +14,11 @@ # # Uncomment this line to change the default base directory to "local" # ------------------------------------------------------------------- -base_dir("/data/omnibus-local") +if ENV["CI"] + base_dir("/tmp/omnibus-local") +else + base_dir("/data/omnibus-local") +end # # Alternatively you can tune the individual values # ------------------------------------------------