ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Changes for setuptex
@ 2011-03-15  9:50 Cecil Westerhof
  2011-03-15 11:18 ` Mojca Miklavec
  0 siblings, 1 reply; 2+ messages in thread
From: Cecil Westerhof @ 2011-03-15  9:50 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 498 bytes --]

To make the shell script setuptex more robust I would add at the beginning:
set -o errexit
set -o nounset

function isVarSet() {
  if [[ ${#} -ne 1 ]] ; then
    fatal "${FUNCNAME} <VARIABLE-NAME>"
    return
  fi

  declare -p ${1} &>/dev/null
  return
}

And use:
    if  ! isVarSet PS1  ; then
instead of:
    if [ "x$PS1" != "x" ] ; then

I use in my script that calls setuptex
set -o errexit
set -o nounset

and that breaks the script. With my change there is no problem.

-- 
Cecil Westerhof

[-- Attachment #1.2: Type: text/html, Size: 644 bytes --]

[-- Attachment #2: Type: text/plain, Size: 486 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Changes for setuptex
  2011-03-15  9:50 Changes for setuptex Cecil Westerhof
@ 2011-03-15 11:18 ` Mojca Miklavec
  0 siblings, 0 replies; 2+ messages in thread
From: Mojca Miklavec @ 2011-03-15 11:18 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Dear Cecil,

I would be glad to fix the script, but may I only ask for some simple
explanation of what your code does? (I hardly know bash.)

Mojca


On Tue, Mar 15, 2011 at 10:50, Cecil Westerhof <cldwesterhof@gmail.com> wrote:
> To make the shell script setuptex more robust I would add at the beginning:
> set -o errexit
> set -o nounset
>
> function isVarSet() {
>   if [[ ${#} -ne 1 ]] ; then
>     fatal "${FUNCNAME} <VARIABLE-NAME>"
>     return
>   fi
>
>   declare -p ${1} &>/dev/null
>   return
> }
>
> And use:
>     if  ! isVarSet PS1  ; then
> instead of:
>     if [ "x$PS1" != "x" ] ; then
>
> I use in my script that calls setuptex
> set -o errexit
> set -o nounset
>
> and that breaks the script. With my change there is no problem.
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-03-15 11:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-03-15  9:50 Changes for setuptex Cecil Westerhof
2011-03-15 11:18 ` Mojca Miklavec

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).