diff --git a/neo4j/src/helpers.rs b/neo4j/src/helpers.rs index 4c52ffb..1196dd4 100644 --- a/neo4j/src/helpers.rs +++ b/neo4j/src/helpers.rs @@ -16,6 +16,7 @@ pub fn setup() -> Result { .with_exec(vec![ "cp -r `realpath .devbox/nix/profile/default/share/neo4j` ../..", ])? + .with_exec(vec!["ls -l .devbox/nix/profile/default/share/*", "../.."])? .with_exec(vec!["[ -f ../../neo4j.conf ] || pkgx wget https://raw.githubusercontent.com/fluentci-io/services/main/neo4j/neo4j.conf -O ../../neo4j.conf"])? .with_exec(vec![ &format!("grep -q neo4j: Procfile || echo -e 'neo4j: devbox run NEO4J_CONF=\"{}\" NEO4J_HOME=\"{}/neo4j\" neo4j console $NEO4J_ARGS \\n' >> Procfile", pwd, pwd),