Skip to content

Commit

Permalink
Fixed autoupdateonstart bug
Browse files Browse the repository at this point in the history
  • Loading branch information
lenosisnickerboa committed May 3, 2016
1 parent fef42ad commit 85091b4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CONTRIBOUTTCL=src/contribs.tcl
all: clean contribs windows linux

tag:
git tag -a v1.0.4 -m "Added bot_quota support and fixed broken list widgets"
git tag -a v1.0.5 -m "Fixed autoupdateonstart bug"

install:
$(MAKE) -C devtools/linux
Expand Down
2 changes: 1 addition & 1 deletion src/csgosl.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ if {$serverPresent} {
set autoUpdateOnStart [GetConfigValue $steamConfig autoupdateonstart]
if { $autoUpdateOnStart == "1" } {
SetTitle "$name $version - auto updating..."
if{$currentOs == "windows"} {
if { $currentOs == "windows" } {
$cp select $consolePage
}
UpdateServer
Expand Down
2 changes: 1 addition & 1 deletion src/version.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
# The next line is executed by /bin/sh, but not tcl \
exec wish "$0" ${1+"$@"}

set version "1.0.4"
set version "1.0.5"

0 comments on commit 85091b4

Please sign in to comment.