Skip to content

Commit

Permalink
Change the order of copy-xxx-confs and cleanup
Browse files Browse the repository at this point in the history
Before, the copy-xxx-confs was called first,
afterwards the cleanup-xxx was called.

Because of the changes for the new configuration
scheme with subdirectories, the cleanup was
changed to also remove configuration files.

This lead to non-existing configuration files because
of the wrong order.
  • Loading branch information
pstorz committed Sep 13, 2016
1 parent 10c207d commit 3a300c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/functions
Expand Up @@ -426,14 +426,14 @@ end_test()

copy_tape_confs()
{
${rscripts}/copy-tape-confs
${rscripts}/cleanup-tape
${rscripts}/copy-tape-confs
}

copy_test_confs()
{
${rscripts}/copy-test-confs
${rscripts}/cleanup
${rscripts}/copy-test-confs
}

disable_pluguins()
Expand Down

0 comments on commit 3a300c3

Please sign in to comment.