Skip to content

Commit 0f843d7

Browse files
committed
Should fix pre-commit and version file
1 parent 59e2624 commit 0f843d7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.githooks/pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ case $branchon in
8383
rc)
8484
channel="Release Candidate"
8585
version_prefix="${branchend}.0-RC"
86-
if [[ $current_version =~ "${version_prefix}-([0-9]+)" ]]; then
86+
if [[ $current_version =~ ${version_prefix}-([0-9]+) ]]; then
8787
last_rc_version=${BASH_REMATCH[1]}
8888
next_rc_version=$((last_rc_version + 1))
8989
else

packages/web/lib/fog/system.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ private static function _versionCompare()
5353
public function __construct()
5454
{
5555
self::_versionCompare();
56-
define('FOG_VERSION', '1.5.10.');
56+
define('FOG_VERSION', '1.5.10.1704');
5757
define('FOG_SCHEMA', 273);
5858
define('FOG_BCACHE_VER', 141);
5959
define('FOG_CLIENT_VERSION', '0.13.0');

0 commit comments

Comments
 (0)