Skip to content

Commit

Permalink
Merge pull request #383 from ebattat/fix_make
Browse files Browse the repository at this point in the history
fix tf path
  • Loading branch information
ebattat committed Nov 7, 2023
2 parents 274c1fb + 19fa237 commit 184b233
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion grafonnet_generator/grafana/perf/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# jsonnet/jsonnetfile.lock.json - for working on specific grafonnet version
apply:
@cd jsonnet/ && \
/root/go/bin/jb install && \
jb install && \
cd ../ && \
ls -l && \
ls -l jsonnet && \
Expand Down
3 changes: 2 additions & 1 deletion grafonnet_generator/grafana/perf/dashboard.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ provider "jsonnet" {
}

data "jsonnet_file" "dashboard" {
source = "jsonnet/main.libsonnet"
source = "${path.cwd}/jsonnet/main.libsonnet"
jsonnet_path = "${path.cwd}/jsonnet/vendor"
}

output "dashboard" {
Expand Down

0 comments on commit 184b233

Please sign in to comment.