Jelajahi Sumber

Merge branch 'master' of orgmode.org:org-mode

Bastien Guerry 13 tahun lalu
induk
melakukan
50caf97422
1 mengubah file dengan 2 tambahan dan 1 penghapusan
  1. 2 1
      lisp/ob-sh.el

+ 2 - 1
lisp/ob-sh.el

@@ -190,7 +190,8 @@ return the value of the last statement in BODY."
 	    (list org-babel-sh-eoe-indicator))))
 	2)) "\n"))
     ('otherwise				; external shell script
-     (if (cdr (assoc :shebang params))
+     (if (and (cdr (assoc :shebang params))
+	      (> (length (cdr (assoc :shebang params))) 0))
 	 (let ((script-file (org-babel-temp-file "sh-script-"))
 	       (shebang (cdr (assoc :shebang params)))
 	       (padline (not (string= "no" (cdr (assoc :padline params))))))