Skip to content

Commit

Permalink
Merge pull request #34084 from trustvox/master
Browse files Browse the repository at this point in the history
Remove "include FileUtils" sentence in setup/update bin files
  • Loading branch information
rafaelfranca committed Oct 5, 2018
2 parents 1042950 + a725539 commit 0ece391
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
@@ -1,5 +1,4 @@
require 'fileutils'
include FileUtils

# path to your application root.
APP_ROOT = File.expand_path('..', __dir__)
Expand All @@ -8,7 +7,7 @@ def system!(*args)
system(*args) || abort("\n== Command #{args} failed ==")
end

chdir APP_ROOT do
FileUtils.chdir APP_ROOT do
# This script is a starting point to setup your application.
# Add necessary setup steps to this file.

Expand Down
@@ -1,5 +1,4 @@
require 'fileutils'
include FileUtils

# path to your application root.
APP_ROOT = File.expand_path('..', __dir__)
Expand All @@ -8,7 +7,7 @@ def system!(*args)
system(*args) || abort("\n== Command #{args} failed ==")
end

chdir APP_ROOT do
FileUtils.chdir APP_ROOT do
# This script is a way to update your development environment automatically.
# Add necessary update steps to this file.

Expand Down

0 comments on commit 0ece391

Please sign in to comment.