Skip to content

Commit 0990ee4

Browse files
authored
Merge pull request softprops#69 from Veetaha/feat/fix-test
Fix rm waiting for stdin (interactive mode) in tests
2 parents 51af27b + 58eaef2 commit 0990ee4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ for project in test-func test-multi-func test-func-with-hooks; do
6161
assert "it packages all bins" package_all "${bin_name}"
6262

6363
# verify packaged artifact by invoking it using the lambdaci "provided" docker image
64-
rm output.log > /dev/null 2>&1
65-
rm test-out.log > /dev/null 2>&1
64+
rm -f output.log > /dev/null 2>&1
65+
rm -f test-out.log > /dev/null 2>&1
6666
rm -rf /tmp/lambda > /dev/null 2>&1
6767
unzip -o \
6868
target/lambda/release/"${bin_name}".zip \

0 commit comments

Comments
 (0)