Init repo with diff-dump tools and compare-diffs script
This commit is contained in:
Executable
+14
@@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -ex
|
||||
|
||||
PLUGIN_OUTPUT=$(mktemp -d -t plugin_)
|
||||
GETH_OUTPUT=$(mktemp -d -t geth_)
|
||||
|
||||
./dumpdiff.plugeth $PLUGIN_OUTPUT
|
||||
./dumpdiff.geth $GETH_OUTPUT
|
||||
|
||||
for file in $(ls $PLUGIN_OUTPUT)
|
||||
do
|
||||
diff "$PLUGIN_OUTPUT/$file" "$GETH_OUTPUT/$file"
|
||||
done
|
||||
Reference in New Issue
Block a user