From: Robby Kiggen | Essential IT <robby.kiggen@essential-it.be>
To: emacs-orgmode@gnu.org
Subject: Variables not set during tangle of sh code (org 9.5)
Date: Wed, 18 Nov 2020 12:34:40 +0100 [thread overview]
Message-ID: <186354732.20201118123440@essential-it.be> (raw)
Hi,
in OrgMode 9.5 it seems that the variables during the tangling of sh
aren't set/initialized.
For example the block below:
#+begin_src sh :var str="Hello World" :tangle helloworld.sh
echo $str
#+end_src
Gets tangled into:
echo $str
Which means the str="Hello World" line is missing.
I tried this with an emacs block and that seemed to be working.
The following block:
#+begin_src emacs-lisp :var data1=8 data2=16 :tangle test.lsp
(message "data1:%S, data2:%S" data1 data2)
#+end_src
Was tangled to:
(let ((data1 '8)
(data2 '16))
(message "data1:%S, data2:%S" data1 data2)
)
This leads me to believe that there is a bug in ob-shell.el.
--
Best regards,
Robby Kiggen | Essential IT
next reply other threads:[~2020-11-18 13:34 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-18 11:34 Robby Kiggen | Essential IT [this message]
2020-12-13 6:32 ` Variables not set during tangle of sh code (org 9.5) Kyle Meyer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=186354732.20201118123440@essential-it.be \
--to=robby.kiggen@essential-it.be \
--cc=emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
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 read-only IMAP folder(s) and NNTP newsgroup(s).