diff options
| author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2025-04-01 14:15:39 +0200 |
|---|---|---|
| committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2025-04-01 14:15:39 +0200 |
| commit | 8493897dd48254f2bb40d5fdfe80d6031f891ce1 (patch) | |
| tree | 794164306628f15d1d7a1ae0612215c366affaa8 /tests/run-eds-ics-test.sh | |
| parent | f1f745daecd0912e17f30626309d412ad23cf47e (diff) | |
| parent | be6251cb3234b292cbc3bb9b661d6a0777115f17 (diff) | |
| download | ayatana-indicator-datetime-8493897dd48254f2bb40d5fdfe80d6031f891ce1.tar.gz ayatana-indicator-datetime-8493897dd48254f2bb40d5fdfe80d6031f891ce1.tar.bz2 ayatana-indicator-datetime-8493897dd48254f2bb40d5fdfe80d6031f891ce1.zip | |
Merge branch 'tari01-pr/mkcal-backend'
Attributes GH PR #135: https://github.com/AyatanaIndicators/ayatana-indicator-datetime/pull/135
Diffstat (limited to 'tests/run-eds-ics-test.sh')
| -rwxr-xr-x | tests/run-eds-ics-test.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/run-eds-ics-test.sh b/tests/run-eds-ics-test.sh index 4cbc0d3..01ebc48 100755 --- a/tests/run-eds-ics-test.sh +++ b/tests/run-eds-ics-test.sh @@ -50,21 +50,21 @@ if [ -d ${CONFIG_DIR} ]; then fi # if there's a specific ics file to test, copy it on top of the canned config files -if [ -e ${ICS_FILE} ]; then +if [ -e "${ICS_FILE}" ]; then echo "copying ${ICS_FILE} into $HOME" mkdir -p ${XDG_DATA_HOME}/evolution/tasks/system/ - cp --verbose --archive ${ICS_FILE} ${XDG_DATA_HOME}/evolution/tasks/system/tasks.ics + cp --verbose --archive "${ICS_FILE}" ${XDG_DATA_HOME}/evolution/tasks/system/tasks.ics fi # prepare online accounts database -if [ -e ${ACCOUNTS_DB} ]; then +if [ -e "${ACCOUNTS_DB}" ]; then echo "copying ${ACCOUNTS_DB} into $HOME" mkdir -p ${XDG_CONFIG_HOME}/libaccounts-glib/ - cp --verbose --archive ${ACCOUNTS_DB} ${XDG_CONFIG_HOME}/libaccounts-glib/accounts.db + cp --verbose --archive "${ACCOUNTS_DB}" ${XDG_CONFIG_HOME}/libaccounts-glib/accounts.db fi # run the test -${TEST_RUNNER} --keep-env --max-wait=90 --task ${TEST_EXEC} --task-name ${TEST_NAME} --wait-until-complete +${TEST_RUNNER} --keep-env --max-wait=90 --task "${TEST_EXEC}" --task-name ${TEST_NAME} --wait-until-complete rv=$? # if the test passed, blow away the tmpdir |
