Skip to content

Commit

Permalink
fix(scripts): fix lua file
Browse files Browse the repository at this point in the history
  • Loading branch information
DorielRivalet committed Aug 4, 2023
1 parent c3d6b33 commit 84eeabf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/automate-git-stats.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ jobs:
run: |
mkdir ./scripts/input
git log --numstat > ./scripts/input/git.txt
echo "Total lines in git text file: " << wc -l < ./scripts/input/git.txt
echo "Total lines in git text file: "
wc -l < ./scripts/input/git.txt
- name: Anonymize emails
run: |
Expand Down
1 change: 1 addition & 0 deletions scripts/rename_emails.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ print('Renaming emails...')
local current_dir = lfs.currentdir()
print(current_dir)

local input_folder = './input'
local input_file = './input/git.txt'
local output_file = './input/git_anonymized.txt'
local keep_email = '100863878+DorielRivalet@users.noreply.github.com'
Expand Down

0 comments on commit 84eeabf

Please sign in to comment.