From 63d6adbe3e1d0c1f5e632e533f406e517d98854e Mon Sep 17 00:00:00 2001 From: Alexander Lutay Date: Thu, 17 May 2018 19:35:51 +0200 Subject: [PATCH] TT#29620 Clean shellcheck TAP test warning: SC2046 and SC2006 Fixed the following warnings: * Use $(..) instead of deprecated `..` [SC2006] * Quote this to prevent word splitting. [SC2046] Also make it more readable. Change-Id: Ib070dc31a320700ff0ec41e4d90a0586da9551f1 --- script/ssl-server.sh | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/script/ssl-server.sh b/script/ssl-server.sh index b7f860d4a0..53301e3f4d 100755 --- a/script/ssl-server.sh +++ b/script/ssl-server.sh @@ -1,2 +1,13 @@ #!/bin/sh -CATALYST_DEBUG=1 DBIC_TRACE=1 DBIC_TRACE_PROFILE=console DEVEL_CONFESS_OPTIONS='objects builtin dump color source' perl `which plackup` -I ../data-hal/lib -I ../ngcp-schema/lib -I lib -I ../sipwise-base/lib/ ngcp_panel.psgi --listen /tmp/ngcp_panel_sock --nproc 1 -s FCGI -r + +export CATALYST_DEBUG=1 +export DBIC_TRACE=1 +export DBIC_TRACE_PROFILE=console +export DEVEL_CONFESS_OPTIONS='objects builtin dump color source' + +perl "$(which plackup)" \ + -I ../data-hal/lib \ + -I ../ngcp-schema/lib \ + -I lib \ + -I ../sipwise-base/lib/ \ + ngcp_panel.psgi --listen /tmp/ngcp_panel_sock --nproc 1 -s FCGI -r