Kaydet (Commit) 6c80b373 authored tarafından Yeliz Taneroğlu's avatar Yeliz Taneroğlu Kaydeden (comit) Chris Sherlock

tdf#105204 fix shellcheck warnings in ure/source/uno

Use $(..) instead of `..`,
double quote to prevent word splitting.

Change-Id: I80251d98e6fb27af5a18c202521050c8101131fa
Reviewed-on: https://gerrit.libreoffice.org/37465Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarChris Sherlock <chris.sherlock79@gmail.com>
üst 8b850cad
......@@ -26,11 +26,11 @@ for my_arg in "$@" ; do
done
# Extend the LD_LIBRARY_PATH for Java:
epath=`dirname "$0"`
epath=$(dirname "$0")
if [ -x "${epath}/javaldx" ] ; then
jpath=`"${epath}/javaldx" $my_envargs`
jpath=$("${epath}/javaldx" "$my_envargs")
if [ -n "${jpath}" ]; then
sd_platform=`uname -s`
sd_platform=$(uname -s)
case $sd_platform in
AIX)
LIBPATH=${jpath}${LIBPATH:+:${LIBPATH}}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment