mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 07:22:23 -04:00
9 lines
179 B
Bash
Executable file
9 lines
179 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# add buildhash to output files
|
|
top=$(dirname $0)/..
|
|
ver=$(cat $top/meta/version)
|
|
hash=$(cat $top/meta/buildhash)
|
|
rename "s/-${ver}-/-${ver}+${hash}-/" $top/dist/*
|
|
|
|
|