diff --git a/.dockerignore b/.dockerignore index 5a6ec02..d11570b 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,3 +1,4 @@ **/.git target Cargo.lock +notes/ diff --git a/docker/cargo_fmt/Makefile b/docker/cargo_fmt/Makefile index 76375e2..121b50e 100644 --- a/docker/cargo_fmt/Makefile +++ b/docker/cargo_fmt/Makefile @@ -6,7 +6,7 @@ all: build push .PHONY: build build: - docker build -t $(IMAGE_NAME) -f Dockerfile ../ + docker build -t $(IMAGE_NAME) -f Dockerfile ../../ .PHONY: push push: diff --git a/docker/organic_build/Makefile b/docker/organic_build/Makefile index 001c941..950cc71 100644 --- a/docker/organic_build/Makefile +++ b/docker/organic_build/Makefile @@ -6,7 +6,7 @@ all: build push .PHONY: build build: - docker build -t $(IMAGE_NAME) -f Dockerfile ../ + docker build -t $(IMAGE_NAME) -f Dockerfile ../../ .PHONY: push push: diff --git a/docker/organic_test/Makefile b/docker/organic_test/Makefile index 30b9b6b..2de6ba1 100644 --- a/docker/organic_test/Makefile +++ b/docker/organic_test/Makefile @@ -6,7 +6,7 @@ all: build push .PHONY: build build: - docker build -t $(IMAGE_NAME) -f Dockerfile ../ + docker build -t $(IMAGE_NAME) -f Dockerfile ../../ .PHONY: push push: diff --git a/tests/test_template b/tests/test_template index 442db66..53edd64 100644 --- a/tests/test_template +++ b/tests/test_template @@ -1,5 +1,5 @@ #[test] -fn {name}() {{ +fn autogen_{name}() {{ let todo_org_path = "{path}"; let org_contents = std::fs::read_to_string(todo_org_path).expect("Read org file."); println!("{{}}", org_contents);