Skip to content

Commit

Permalink
Remove debug messages (#35)
Browse files Browse the repository at this point in the history
* Sync'ed master & dev

* Removed debugging messages
  • Loading branch information
mtesauro authored Dec 5, 2021
1 parent 923e379 commit 4ff092c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions util.go
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,6 @@ func addRedact(s string) {

func escSpCar(s string) string {
// Replace special characters that cause issues when exec'ing in Bash
fmt.Printf("Before escaping string - %s\n", s)

// Replace $ with \$
s = strings.ReplaceAll(s, "\\", "\\\\")
Expand All @@ -164,7 +163,6 @@ func escSpCar(s string) string {
// Replace $ with \$
s = strings.ReplaceAll(s, "`", "\\`")

fmt.Printf("After escaping string - %s\n", s)
return s
}

Expand Down

0 comments on commit 4ff092c

Please sign in to comment.