mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 09:22:43 +03:00
7 lines
334 B
Bash
7 lines
334 B
Bash
|
#!/bin/bash
|
||
|
# We are generating shasum of files in the server directory (excluding packaging and test files).
|
||
|
# This is to track whether server directory has changed or not
|
||
|
dir=$(dirname $0)
|
||
|
cd $dir/../..
|
||
|
git ls-files -- ':!tests-py' . ':!packaging' . ':!.*' . ':!bench-wrk' | sort | xargs cat | shasum | awk '{print $1}' | tail -c 9
|