Skip to content

Commit

Permalink
fix check-exists target and update .dockerignores
Browse files Browse the repository at this point in the history
Signed-off-by: David Wood <[email protected]>
  • Loading branch information
daw3rd committed Jan 17, 2025
1 parent 8b537b1 commit a595ee0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions transforms/.make.transforms
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ test-locals:: .transforms.test-locals
echo $$REQ create $(CHECK_FILE_NAME) in directory $(CHECK_DIR); \
exit 0; \
fi; \
exists=$$(find $(CHECK_DIR) -name $(CHECK_FILE_NAME)); \
exists=$$(find $(CHECK_DIR) -d 1 -name $(CHECK_FILE_NAME)); \
if [ -z "$$exists" ]; then \
echo $$REQ create $(CHECK_FILE_NAME) in directory $(CHECK_DIR); \
fi
Expand All @@ -218,7 +218,7 @@ test-locals:: .transforms.test-locals
@if [ ! -d "$(CHECK_DIR)" ]; then \
exit 0; \
fi; \
exists=$$(find $(CHECK_DIR) -name $(CHECK_FILE_NAME)); \
exists=$$(find $(CHECK_DIR) -d 1 -name $(CHECK_FILE_NAME)); \
if [ ! -z "$$exists" ]; then \
echo $REQ remove file $(CHECK_FILE_NAME) from directory $(CHECK_DIR); \
fi
Expand Down

This file was deleted.

7 changes: 6 additions & 1 deletion transforms/universal/noop/.dockerignore
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
venv
venv/
output/
models/
__pycache__/
.pytest_cache/
scratch/

0 comments on commit a595ee0

Please sign in to comment.