mneethiraj commented on code in PR #297:
URL: https://github.com/apache/atlas/pull/297#discussion_r1966437608
##########
dev-support/atlas-docker/README.md:
##########
@@ -36,24 +36,31 @@ Docker files in this folder create docker images and run
them to build Apache At
./download-archives.sh
~~~
-5. Execute following commands to set environment variables to build Apache
Atlas docker containers:
+5. Ensure that the `${HOME}/.m2` directory exists and has the correct
ownership:
+ ~~~
+ mkdir -p ${HOME}/.m2
+ sudo chown -R $(whoami):$(whoami) ${HOME}/.m2
Review Comment:
`.m2/repository` directory can have large number of files and directories (>
50k files is not uncommon). Line # 42 can take a long time to complete.
Instead of inserting step #5 (and updating numbers of subsequent steps), I
suggest to update 6.1 with inclusion of following line before starting build:
```
mkdir -p ${HOME}/.m2
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]