Skip to content

Commit 76be3aa

Browse files
committed
harness: drop '.' arg from editor invocation
1 parent 636c696 commit 76be3aa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/integration/harness.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1109,8 +1109,8 @@ def shell
11091109
end
11101110
if dir
11111111
editor = ENV["EDITOR"] || "code"
1112-
puts "\e[2m$ pushd #{dir} && #{editor} . && popd\e[0m"
1113-
system("bash", "-c", "pushd #{Shellwords.shellescape(dir)} && #{editor} . && popd")
1112+
puts "\e[2m$ pushd #{dir} && #{editor} && popd\e[0m"
1113+
system("bash", "-c", "pushd #{Shellwords.shellescape(dir)} && #{editor} && popd")
11141114
else
11151115
puts "No active scenario directory."
11161116
end

0 commit comments

Comments
 (0)