version: remove quoting around version name

I added them earlier while fighting our redo+xcode build which wasn't
picking up these files on incremental builds. It still isn't, but now I've
verified with full builds that no quotes is correct.
This commit is contained in:
Brad Fitzpatrick
2020-07-09 14:38:23 -07:00
parent 96994ec431
commit dba9b96908
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ import (
)
func xcode(name, semver string) string {
return fmt.Sprintf("VERSION_NAME = %q\nVERSION_ID = %s", name, semver)
return fmt.Sprintf("VERSION_NAME = %s\nVERSION_ID = %s", name, semver)
}
func mkversion(t *testing.T, mode, in string) string {