0cd3fed400
Signed-off-by: Stephen Gallagher <sgallagh@redhat.com>
9 lines
163 B
Bash
Executable File
9 lines
163 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Get the ABI version
|
|
abi_version=$(/usr/bin/node -p process.versions.modules)
|
|
|
|
# Write out the Virtual Requires
|
|
echo "nodejs(abi) = ${abi_version}"
|
|
|