Skip to content

Commit

Permalink
Remove escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
ValentaTomas committed Sep 25, 2023
1 parent 041c677 commit 7707283
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 25 deletions.
4 changes: 1 addition & 3 deletions packages/api/internal/nomad/env.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@ const (
//go:embed env-build.hcl
var envBuildFile string

var envBuildTemplate = template.Must(template.New(buildJobName).Funcs(template.FuncMap{
"escapeHCL": escapeHCL,
}).Parse(envBuildFile))
var envBuildTemplate = template.Must(template.New(buildJobName).Funcs(template.FuncMap{}).Parse(envBuildFile))

func (n *NomadClient) BuildEnvJob(
t trace.Tracer,
Expand Down
22 changes: 0 additions & 22 deletions packages/api/internal/nomad/template.go

This file was deleted.

0 comments on commit 7707283

Please sign in to comment.