11 lines
329 B
Bash
Executable file
11 lines
329 B
Bash
Executable file
#!/bin/sh -
|
|
|
|
# Note: also, remember to update version numbers in rpath specs so that shared libs can be found at runtime!!!
|
|
|
|
wterl=`git log -n 1 --pretty=format:"%H"`
|
|
wiredtiger0=`(cd c_src/wiredtiger-develop && git log -n 1 --pretty=format:"%H")`
|
|
wiredtiger=`echo $wiredtiger0 | awk '{print $2}'`
|
|
|
|
echo $wterl
|
|
echo $wiredtiger
|
|
|