aboutsummaryrefslogtreecommitdiffstats
path: root/spec/syntax_suggest/integration/exe_cli_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/syntax_suggest/integration/exe_cli_spec.rb')
-rw-r--r--spec/syntax_suggest/integration/exe_cli_spec.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/spec/syntax_suggest/integration/exe_cli_spec.rb b/spec/syntax_suggest/integration/exe_cli_spec.rb
index 79e659a27a..f0b49b4386 100644
--- a/spec/syntax_suggest/integration/exe_cli_spec.rb
+++ b/spec/syntax_suggest/integration/exe_cli_spec.rb
@@ -5,7 +5,11 @@ require_relative "../spec_helper"
module SyntaxSuggest
RSpec.describe "exe" do
def exe_path
- root_dir.join("exe").join("syntax_suggest")
+ if ruby_core?
+ root_dir.join("../libexec").join("syntax_suggest")
+ else
+ root_dir.join("exe").join("syntax_suggest")
+ end
end
def exe(cmd)