Skip to content

Commit

Permalink
removing unnecessary quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
T.j. Randall committed Aug 2, 2017
1 parent 3480170 commit 0aa95db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -2,7 +2,7 @@ language: java
sudo: false
deploy:
provider: releases
file: build/libs/xld-sybase-plugin-1.0.3.jar
file: build/libs/xld-sybase-plugin-1.0.4.jar
skip_cleanup: true
on:
all_branches: true
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -7,7 +7,7 @@ apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'maven'
version='1.0.3'
version='1.0.4'

license {
header rootProject.file('License.md')
Expand Down
4 changes: 1 addition & 3 deletions src/main/resources/sql/SybaseClient.bat.ftl
Expand Up @@ -13,8 +13,6 @@ setlocal
<#import "/sql/commonFunctions.ftl" as cmn>
<#include "/generic/templates/windowsSetEnvVars.ftl">

set SYBASE_HOME="${deployed.container.sybHome}"

<#if !cmn.lookup('username')??>
echo 'ERROR: username not specified! Specify it in either SqlScripts or its SybaseClient container'
endlocal
Expand All @@ -26,7 +24,7 @@ exit /B 1
<#else>
cd ${deployed.file.path}

"${deployed.container.sybHome}\bin\isql" -S ${deployed.container.address} -D ${deployed.container.dbName} -U "${cmn.lookup('additionalOptions')!}${cmn.lookup('username')}" -P "${cmn.lookup('additionalOptions')!}${cmn.lookup('password')}" --retserverror -i @"${sqlScriptToExecute}"
${deployed.container.sybHome}\bin\isql.exe -S ${deployed.container.address} -D ${deployed.container.dbName} -U ${cmn.lookup('additionalOptions')!}${cmn.lookup('username')} -P ${cmn.lookup('additionalOptions')!}${cmn.lookup('password')} --retserverror -i @"${sqlScriptToExecute}"

set RES=%ERRORLEVEL%
if not %RES% == 0 (
Expand Down

0 comments on commit 0aa95db

Please sign in to comment.