Open
Description
Desired behavior
#+BEGIN_SRC sh :session foo :async
export GREETING="Hola"
#+END_SRC
#+RESULTS:
#+BEGIN_SRC sh :session foo :async :results output raw
[[ -n "$GREETING" ]] && echo "$GREETING" || echo ":session is not respected"
#+END_SRC
#+RESULTS:
Hola
Current behavior
#+BEGIN_SRC sh :session foo :async
export GREETING="Hola"
#+END_SRC
#+RESULTS:
#+BEGIN_SRC sh :session foo :async :results output raw
[[ -n "$GREETING" ]] && echo "$GREETING" || echo ":session is not respected"
#+END_SRC
#+RESULTS:
:session is not respected