Vsevolod Romashov
Vsevolod Romashov
@Zitchas can you please try replacing `/` with `\` in [this line](https://github.com/7even/endless-ships/blob/7301127466c26b9c445524c404d5fcad23e8d6cf/src/clj/endless_ships/parser.clj#L10) and launch `boot build` again?
Sorry, I forgot that backslashes need to be escaped inside strings in Clojure. Please add a second backslash, so that it's `"game\\data"`.
> edit: In the build.boot file at L 47 there is a `[]` Should this be a location or something? No, it's just an empty parameters list for a function....
> Any chance that it's looking for a hardcoded location (for instance, located directly at the root of C: ? I don't think so but I have pretty much no...
Well, endless-ships can be run in a Docker container, so if you install Docker you can follow [the instructions in readme](https://github.com/7even/endless-ships?tab=readme-ov-file#installation-docker). Furthermore, I think you could make changes to the...
@Zitchas it finally reproduced on my machine, and I decided it's time to move the project from `boot-clj` to `tools.deps` (the problem seemed to be related to the way boot-clj...
Oh, the reason is that the build script uses the `rm` Unix command which doesn't exist in Windows. I replaced it and some other file management commands with Clojure/Java functions,...
Yep, sorry, forgot to check if directory exists before trying to delete it. Now it's fixed.
@Zitchas can you please run `yarn install` manually from the project's root directory and paste the result here?