Skip to content

Commit

Permalink
build(make): fix removal of files in an empty directory
Browse files Browse the repository at this point in the history
e21dc0c broke when the directory was empty; this should now do nothing in those cases.

Refs #388
  • Loading branch information
thewilkybarkid committed Aug 16, 2021
1 parent e21dc0c commit 0817485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ test: build ## Run the tests
integration-test: export TARGET = integration
integration-test: export LOG_FILE = integration/results/docker.log
integration-test: build ## Run the integration tests
mkdir -p integration/results && rm -r integration/results/*
mkdir -p integration/results && rm -rf integration/results/*
${DOCKER_COMPOSE} run --rm playwright; ${LOGS}

smoke-test: build ## Run the smoke tests
Expand Down

0 comments on commit 0817485

Please sign in to comment.