Skip to content

Commit

Permalink
Merge 432531f into c9eb88e
Browse files Browse the repository at this point in the history
  • Loading branch information
kbrock committed Aug 21, 2018
2 parents c9eb88e + 432531f commit 436c83c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -24,7 +24,6 @@ matrix:
addons:
postgresql: '9.5'
before_install:
- mkdir ${TRAVIS_BUILD_DIR}/log
- source ${TRAVIS_BUILD_DIR}/tools/ci/before_install.sh
before_script:
- bundle exec rake test:$TEST_SUITE:setup
Expand Down
1 change: 0 additions & 1 deletion bin/setup
Expand Up @@ -16,7 +16,6 @@ end

Dir.chdir(ManageIQ::Environment::APP_ROOT) do
ManageIQ::Environment.ensure_config_files
Dir.mkdir("log") unless File.exist?("log")

puts '== Installing dependencies =='
ManageIQ::Environment.install_bundler
Expand Down
3 changes: 3 additions & 0 deletions lib/manageiq/environment.rb
Expand Up @@ -39,6 +39,9 @@ def self.ensure_config_files
puts "Copying #{file} from template..."
FileUtils.cp(APP_ROOT.join(source), file)
end

logdir = APP_ROOT.join("log")
Dir.mkdir(logdir) unless Dir.exist?(logdir)
end

def self.while_updating_bower
Expand Down

0 comments on commit 436c83c

Please sign in to comment.