diff options
author | Robert Tari <robert@tari.in> | 2021-09-03 18:19:34 +0200 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2021-09-03 18:19:34 +0200 |
commit | fbda66ba0e83c0b30053043ff34b778e1d1e2126 (patch) | |
tree | f37d5cee2cadfc188331b43b673d7a026e630f98 | |
parent | 39e7cdc1e0bfb95814b9f1a5a882241899bed18f (diff) | |
download | ayatana-indicator-datetime-fbda66ba0e83c0b30053043ff34b778e1d1e2126.tar.gz ayatana-indicator-datetime-fbda66ba0e83c0b30053043ff34b778e1d1e2126.tar.bz2 ayatana-indicator-datetime-fbda66ba0e83c0b30053043ff34b778e1d1e2126.zip |
tests/run-eds-ics-test.sh: Sleep a little before cleanup to make sure gvfs is released + drop the rm -d flag
-rwxr-xr-x | tests/run-eds-ics-test.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/run-eds-ics-test.sh b/tests/run-eds-ics-test.sh index f21307c..5654034 100755 --- a/tests/run-eds-ics-test.sh +++ b/tests/run-eds-ics-test.sh @@ -69,5 +69,6 @@ rv=$? # if the test passed, blow away the tmpdir if [ $rv -eq 0 ]; then - rm -rfd $TEST_TMP_DIR + sleep 5 + rm -rf $TEST_TMP_DIR fi |