summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Schulte <schulte.eric@gmail.com>2013-11-23 09:14:27 -0700
committerEric Schulte <schulte.eric@gmail.com>2013-11-23 09:14:27 -0700
commit1f498c93f297cf39f9afc609433eb764c1480f9e (patch)
tree71612e3302e9b3ed32df6cc3b35ccc45847fdacb
parente26b6fb77b815c8704ff7eff3a001b36ab63a71c (diff)
downloadorg-mode-1f498c93f297cf39f9afc609433eb764c1480f9e.tar.gz
change default sh code block shell to bash
* lisp/ob-sh.el (org-babel-sh-command): Change default sh code block shell to bash.
-rw-r--r--lisp/ob-sh.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ob-sh.el b/lisp/ob-sh.el
index 4984ff9..1b55ec7 100644
--- a/lisp/ob-sh.el
+++ b/lisp/ob-sh.el
@@ -38,7 +38,7 @@
(defvar org-babel-default-header-args:sh '())
-(defvar org-babel-sh-command "sh"
+(defvar org-babel-sh-command "bash"
"Command used to invoke a shell.
This will be passed to `shell-command-on-region'")