File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
tests/e2e/utils/lambda_layer Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ def __init__(self, output_dir: Path = CDK_OUT_PATH):
22
22
self .cleanup_command = (
23
23
f"rm -rf { self .target_dir } /boto* { self .target_dir } /s3transfer* && "
24
24
f"rm -rf { self .target_dir } /*dateutil* { self .target_dir } /urllib3* { self .target_dir } /six* && "
25
- f"find { self .target_dir } -name '*.so' -type f -exec strip '{{}}' \; && " # noqa: W605
26
- f"find { self .target_dir } -wholename '*/tests/*' -type f -delete && " # noqa: W605
27
- f"find { self .target_dir } -regex '^.*\(__pycache__\|\ .py[co]\)$' -delete" # noqa: W605
25
+ f"find { self .target_dir } -name '*.so' -type f -exec strip '{{}}' \\ ; && "
26
+ f"find { self .target_dir } -wholename '*/tests/*' -type f -delete && "
27
+ f"find { self .target_dir } -regex '^.*\\ (__pycache__\\ | \\ .py[co]\\ )$' -delete"
28
28
)
29
29
self .source_diff_file : Path = CDK_OUT_PATH / "layer_build.diff"
30
30
You can’t perform that action at this time.
0 commit comments