Remove unnecessary $

This commit is contained in:
deajan 2019-05-22 20:30:27 +02:00
parent bcd79e06aa
commit 9976b3a6e5
1 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# osync test suite 2019052002 # osync test suite 2019052201
# Allows the following environment variables # Allows the following environment variables
@ -42,6 +42,9 @@
# setfacl needs double ':' to be compatible with both linux and BSD # setfacl needs double ':' to be compatible with both linux and BSD
# setfacl -m o::rwx file # setfacl -m o::rwx file
# On Windows 10 bash, we need to create host SSH keys first with ssh-keygen -A
# Then start ssh with service ssh start
# TODO, use copies of config file on each test function # TODO, use copies of config file on each test function
if [ "$SKIP_REMOTE" = "" ]; then if [ "$SKIP_REMOTE" = "" ]; then
@ -291,7 +294,7 @@ function oneTimeTearDown () {
$SUDO_CMD ./install.sh --remove --no-stats --prefix="$FAKEROOT" $SUDO_CMD ./install.sh --remove --no-stats --prefix="$FAKEROOT"
assertEquals "Uninstall failed" "0" $? assertEquals "Uninstall failed" "0" $?
ELAPSED_TIME=$(($SECONDS - $START_TIME)) ELAPSED_TIME=$((SECONDS-START_TIME))
echo "It took $ELAPSED_TIME seconds to run these tests." echo "It took $ELAPSED_TIME seconds to run these tests."
} }