diff options
Diffstat (limited to 'planetwars-server/src/modules/matches.rs')
-rw-r--r-- | planetwars-server/src/modules/matches.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/planetwars-server/src/modules/matches.rs b/planetwars-server/src/modules/matches.rs index 489a9fa..f5f9f2a 100644 --- a/planetwars-server/src/modules/matches.rs +++ b/planetwars-server/src/modules/matches.rs @@ -141,8 +141,9 @@ pub fn bot_version_to_botspec( } fn python_docker_bot_spec(config: &GlobalConfig, code_bundle_path: &str) -> Box<dyn BotSpec> { - let code_bundle_rel_path = PathBuf::from(&config.bots_directory).join(code_bundle_path); - let code_bundle_abs_path = std::fs::canonicalize(&code_bundle_rel_path).unwrap(); + let code_bundle_abs_path = PathBuf::from("/home/planetwars/data/bots").join(code_bundle_path); + //let code_bundle_abs_path = std::fs::canonicalize(&code_bundle_rel_path).unwrap(); + println!("{}",code_bundle_abs_path.display()); let code_bundle_path_str = code_bundle_abs_path.as_os_str().to_str().unwrap(); // TODO: it would be good to simplify this configuration |