summaryrefslogblamecommitdiffstats
path: root/printHash.sh
blob: 71f544663f499a25bc7afe7c8863622812d46448 (plain) (tree)
1
2
3
4
5
6
7
           




                                  
                                     




                                              
#!/bin/bash

> $1

echo -n "#define GIT_SHA1 \"" > $1

if (command -v "git" >/dev/null) then
git rev-parse --short HEAD | tr -d '\n' >> $1
fi

echo "\"" >> $1
echo "const char* g_GIT_SHA1 = GIT_SHA1;" >> $1