Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add Developing Tsuru Plugins (branch: beta-v2) #216

Open
wants to merge 3 commits into
base: beta-v2
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
tests: weird regression on windows - endLine
  • Loading branch information
tcarreira committed Oct 21, 2023
commit a66a332af63ab6625c49973a06891453cead6e5b
4 changes: 3 additions & 1 deletion internal/exec/exec_test.go
Original file line number Diff line number Diff line change
@@ -92,6 +92,8 @@ func TestOsExec(t *testing.T) {

func init() {
if runtime.GOOS == "windows" {
endLine = "\r\n"
// windows ends echo with \n or \r\n ?!?
endLine = "\n"
// endLine = "\r\n"
}
}