Skip to content

Commit 366af06

Browse files
committed
rm trailing slash
1 parent bef76f6 commit 366af06

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
@@ -48,7 +48,7 @@ cd ${HERE}/test-func
4848

4949
# test packaing with a single binary
5050
function package_bin() {
51-
rm -rf target/lambda/release/ > /dev/null 2>&1
51+
rm -rf target/lambda/release > /dev/null 2>&1
5252
docker run --rm \
5353
-e BIN="$1" \
5454
-v ${PWD}:/code \
@@ -60,7 +60,7 @@ function package_bin() {
6060

6161
# test packaging all binaries
6262
function package_all() {
63-
rm -rf target/lambda/release/ > /dev/null 2>&1
63+
rm -rf target/lambda/release > /dev/null 2>&1
6464
docker run --rm \
6565
-v ${PWD}:/code \
6666
-v ${HOME}/.cargo/registry:/root/.cargo/registry \

0 commit comments

Comments
 (0)