diff options
Diffstat (limited to 'scripts/no-ee-check')
-rwxr-xr-x | scripts/no-ee-check | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/no-ee-check b/scripts/no-ee-check index 29d319dc822..7f3fef842d0 100755 --- a/scripts/no-ee-check +++ b/scripts/no-ee-check @@ -1,7 +1,7 @@ #!/usr/bin/env ruby -ee_path = File.join(File.expand_path(__dir__), '../ee') +ee_path = File.join(File.expand_path(__dir__), "../ee") if Dir.exist?(ee_path) - puts 'The repository contains /ee directory. There should be no /ee directory in CE repo.' + puts "The repository contains /ee directory. There should be no /ee directory in CE repo." exit 1 end |