Commit be93723

Anton Medvedev <anton@medv.io>
2021-05-08 00:47:49
Use /bin/bash as default shell
1 parent c679289
Changed files (2)
index.mjs
@@ -70,7 +70,7 @@ export function $(pieces, ...args) {
 }
 
 $.verbose = true
-$.shell = undefined
+$.shell = '/bin/bash'
 $.cwd = undefined
 
 export function cd(path) {
README.md
@@ -173,10 +173,10 @@ await $`cd ${os.homedir()} && mkdir example`
 
 ### `$.shell`
 
-Specifies what shell is used. Default is `/bin/sh`.
+Specifies what shell is used. Default is `/bin/bash`.
 
 ```js
-$.shell = '/bin/bash'
+$.shell = '/usr/bin/bash'
 ```
 
 ### `$.verbose`