mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 21:16:49 +00:00
7 lines
222 B
Bash
Executable file
7 lines
222 B
Bash
Executable file
#!/bin/sh
|
|
|
|
rm ../.version || true
|
|
touch ../.version
|
|
git rev-parse HEAD >> ../.version
|
|
git show --no-patch --format=%at $(git rev-parse HEAD) >> ../.version
|
|
(git diff-index --quiet HEAD -- && echo 1) >> ../.version || true
|