4 lines
124 B
Bash
Executable File
4 lines
124 B
Bash
Executable File
#!/bin/sh
|
|
# print current SHA1 git id which uniquely identifies the source code
|
|
git show 2>/dev/null |awk '{print $2;exit}'
|