mirror of
https://github.com/lnbook/lnbook
synced 2024-11-04 18:00:26 +00:00
b7e86db8bd
Given the fast rate of change many users will be changing and experimenting with different versions of the nodes. This is a small script to help an unfamiliar new user find and see the variables that affect the versioning.
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
|