Browse Source

Fix incorrect comparison.

Fixes issue 568


git-svn-id: http://svn.dmdirc.com/branches/0.5.5@3325 00569f92-eb28-0410-84fd-f71c24880f
remotes/0.5.5
Shane Mc Cormack 16 years ago
parent
commit
21dc51c0e1
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      installer/release.sh

+ 1
- 1
installer/release.sh View File

@@ -186,7 +186,7 @@ rm -Rf installer_temp
186 186
 # Copy default settings from www to trunk for compile (if they exist, and we are
187 187
 # building a new jar)
188 188
 REVERTLIST=""
189
-if [ "" != "${JARFILE}" ]; then
189
+if [ "" == "${JARFILE}" ]; then
190 190
 	if [ -e "${HOME}/www/updates/" ]; then
191 191
 		echo "================================================================"
192 192
 		echo "Applying settings update to this source"

Loading…
Cancel
Save