13 lines
230 B
Bash
Executable File
13 lines
230 B
Bash
Executable File
#!/bin/bash
|
|
|
|
VERSION="$(git describe --tags)"
|
|
|
|
if [ -z "$VERSION" ]; then
|
|
echo "Could not parse version from git"
|
|
exit 1
|
|
fi
|
|
|
|
echo -e "<?php define(\"APP_VERSION\", \"$VERSION\");" > src/version
|
|
echo "[Version: $VERSION]"
|
|
|