Merge branch 'master' of github.com:ZoneMinder/zoneminder
commit
74bc714720
|
@ -142,7 +142,7 @@ if [ "$SNAPSHOT" == "stable" ]; then
|
|||
BRANCH=`git describe --tags $(git rev-list --tags --max-count=1)`;
|
||||
if [ -z "$BRANCH" ]; then
|
||||
# This should only happen in CI environments where tag info isn't available
|
||||
BRANCH=$(cat "$(find . -name 'version' -o -name 'version.txt')")
|
||||
BRANCH=$(cat "$(find . -maxdepth 1 -name 'version' -o -name 'version.txt')")
|
||||
echo "Building branch $BRANCH"
|
||||
fi
|
||||
if [ "$BRANCH" == "" ]; then
|
||||
|
@ -180,7 +180,7 @@ fi;
|
|||
echo "git pull..."
|
||||
git pull
|
||||
# Grab the ZoneMinder version from the contents of the version file
|
||||
VERSION=$(cat "$(find . -name 'version' -o -name 'version.txt')")
|
||||
VERSION=$(cat "$(find . -maxdepth 1 -name 'version' -o -name 'version.txt')")
|
||||
if [ -z "$VERSION" ]; then
|
||||
exit 1;
|
||||
fi;
|
||||
|
|
|
@ -936,6 +936,10 @@ a.flip {
|
|||
clear: both;
|
||||
}
|
||||
|
||||
.monitor .monitorStatus.bottom {
|
||||
color: #dddddd;
|
||||
}
|
||||
|
||||
.monitor.idle img {
|
||||
border: 2px solid #ffffff;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue