hydra-queue-runner: ensure roots directory exists

Fixes #513
This commit is contained in:
Will Dietz 2017-10-17 13:00:38 -05:00
parent 45b138373b
commit c81594f470

View file

@ -105,6 +105,8 @@ State::State()
printMsg(lvlError, "hydra.conf: binary_cache_s3_bucket is deprecated and ignored. use store_uri=s3:// instead");
if (config->getStrOption("binary_cache_secret_key_file") != "")
printMsg(lvlError, "hydra.conf: binary_cache_secret_key_file is deprecated and ignored. use store_uri=...?secret-key= instead");
createDirs(rootsDir);
}