Skip to content

Commit

Permalink
release build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
denizzzka committed Mar 18, 2016
1 parent e1313dc commit e0463c5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .test.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
#!/bin/bash
set -ve

dub build --build=release
dub build --build=unittest

CONNINFO=`jq '.sqlServer.connString' ${1}`
CONNINFO_UNQUOTED=`echo $CONNINFO | xargs`

dub build --build=unittest

# Setup Postgres test scheme
psql -v ON_ERROR_STOP=ON -f .test_pgator_rpc_table.sql "$CONNINFO_UNQUOTED"

Expand Down
1 change: 0 additions & 1 deletion dub.sdl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ license "MIT"
copyright "Copyright © 2016"
dependency "vibe-d-postgresql" version="~master"
dependency "vibe-d:http" version="~>0.7.27"
buildType "release"
targetType "executable"

subPackage {
Expand Down
2 changes: 1 addition & 1 deletion source/call_table.d
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Method[string] readMethods(immutable Answer answer)

foreach(ref r; rangify(answer))
{
logDebugV("found row: "~r.toString);
debug logDebugV("found row: "~r.toString);

// optional params handler
void getOptional(T)(string sqlName, ref T result)
Expand Down

0 comments on commit e0463c5

Please sign in to comment.