Skip to content

Commit

Permalink
final touch
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jul 7, 2021
1 parent b71f9f7 commit 12b3a26
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ RUN gem install --no-user-install slop -v 4.9.1

RUN python3 -m pip install javalang==0.12.0

RUN add-apt-repository ppa:inkscape.dev/stable && \
apt update -y && \
apt install -y inkscape

RUN mkdir /usr/local/cam
COPY Makefile /usr/local/cam
COPY discover-repos.rb /usr/local/cam
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ all: env $(TARGET)/repositories.csv cleanup clone filter measure aggregate zip
zip: $(TARGET)/report.pdf
rm -r $(TARGET)/temp
zip -r "cam-$$(date +%Y-%m-%d).zip" "$(TARGET)"
mv "cam-$$(date +%Y-%m-%d).zip" "$(TARGET)"

# Delete calculations.
clean:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ $ docker run --rm -v "$(pwd):/w" -e "TOTAL=1000" -e "TARGET=/w/dataset" yegor256
The dataset will be created in the `./dataset` directory (may take some time,
maybe a few days!), and a `.zip` archive will also be there.

You can also run it without Docker too:
You can also run it without Docker:

```bash
$ make TOTAL=100
Expand Down

0 comments on commit 12b3a26

Please sign in to comment.