mirror of
https://github.com/lnbook/lnbook
synced 2024-11-18 21:28:03 +00:00
9 lines
252 B
Bash
9 lines
252 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# a small script to help sanity check the versions of the different node implementations
|
||
|
dockerfiles=$(find . -name 'Dockerfile')
|
||
|
# print location of dockerfiles
|
||
|
echo $dockerfiles
|
||
|
# print variables
|
||
|
awk '/ENV/ && /VER|COMMIT/' $dockerfiles
|