Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ Authors ordered by first contribution:
- Richard Waller (https://github.com/rwalle61)
- Russell Howe (https://github.com/rhowe-gds)
- Gaby Baghdadi (https://github.com/gabylb)
- Alexey Kotlyarov (https://github.com/koterpillar)
6 changes: 3 additions & 3 deletions binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"srcdir%": "./src",
"agentcoredir%": "./omr-agentcore",
"nandir%": "<!(node -e \"try {require('nan')}catch (e){console.log(e)}\")",
'build_id%': '.<!(["python", "./generate_build_id.py"])',
'appmetricsversion%': '<!(["python", "./get_from_json.py", "./package.json", "version"])',
'build_id%': '.<!(["python3", "./generate_build_id.py"])',
'appmetricsversion%': '<!(["python3", "./get_from_json.py", "./package.json", "version"])',
"conditions": [
['OS=="aix"', {
"SHARED_LIB_SUFFIX": ".a",
Expand Down Expand Up @@ -119,7 +119,7 @@
'inputs': [ "<(srcdir)/appmetrics.cpp" ],
'outputs': [ "<(INTERMEDIATE_DIR)/appmetrics.cpp" ],
'action': [
'python',
'python3',
'./replace_in_file.py',
'<(srcdir)/appmetrics.cpp',
'<(INTERMEDIATE_DIR)/appmetrics.cpp',
Expand Down