mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-12-27 08:34:32 +01:00
9 lines
294 B
Bash
9 lines
294 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
DATE=$(git log -1 --pretty=%cd --date=iso8601 --date=format:'%Y-%m-%d')
|
||
|
sed -i -e "s/@DATE_PLACEHOLDER/${DATE}/" org.DolphinEmu.dolphin-emu.metainfo.xml
|
||
|
VERSION=$(git describe --tags)
|
||
|
sed -i -e "s/@VERSION_PLACEHOLDER/${VERSION}/" org.DolphinEmu.dolphin-emu.metainfo.xml
|
||
|
|
||
|
|