From 077a56b193fed6374a36c02069d21d302abeb0ed Mon Sep 17 00:00:00 2001 From: Simon Fels Date: Sat, 20 Aug 2016 12:05:15 +0200 Subject: [PATCH] Create necessary data paths on startup --- src/anbox/cmds/run.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/anbox/cmds/run.cpp b/src/anbox/cmds/run.cpp index 74926a9..4d7d795 100644 --- a/src/anbox/cmds/run.cpp +++ b/src/anbox/cmds/run.cpp @@ -83,6 +83,11 @@ anbox::cmds::Run::Run(const BusFactory& bus_factory) utils::ensure_paths({ config::socket_path(), + config::host_share_path(), + config::host_android_data_path(), + config::host_android_cache_path(), + config::host_android_storage_path(), + config::host_input_device_path(), }); auto rt = Runtime::create();