mirror of https://github.com/odrling/Aegisub
fix version.sh when building from a git worktree
In a git worktree .git is a regular file that contains a reference to its git directory
This commit is contained in:
parent
f576781cf6
commit
6d930e7862
|
@ -4,7 +4,7 @@ export GIT_DIR="${srcdir}/.git"
|
|||
|
||||
# If no git repo try to read from the existing git_version.h, for building from tarballs
|
||||
version_h_path="${builddir}/git_version.h"
|
||||
if ! test -d "${srcdir}/.git"; then
|
||||
if ! test -e "${srcdir}/.git"; then
|
||||
if test -f "${version_h_path}"; then
|
||||
while read line; do
|
||||
set -- $line
|
||||
|
|
Loading…
Reference in New Issue