Skip to content

Commit

Permalink
e2e fix bundle default path with blank spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianriobo authored and praveenkumar committed Jan 6, 2022
1 parent 23a4aaf commit 4a89d0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/crcsuite/crcsuite.go
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ func SetConfigPropertyToValueSucceedsOrFails(property string, value string, expe
if value == "current bundle" {
if bundleEmbedded {
if installerBuild != "false" {
value = filepath.Join(cmd.GetCRCBinaryPath(), bundleName)
value = fmt.Sprintf(`"%s"`, filepath.Join(cmd.GetCRCBinaryPath(), bundleName))
} else {
value = filepath.Join(CRCHome, "cache", bundleName)
}
Expand Down

0 comments on commit 4a89d0e

Please sign in to comment.