Merge pull request #1325 from rico-chet/interactive-shell-only
template/profile: Require interactive shellpull/1328/head
commit
f02dab437a
|
|
@ -1,5 +1,11 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# If not running interactively, don't do anything
|
||||
case $- in
|
||||
*i*) ;;
|
||||
*) return;;
|
||||
esac
|
||||
|
||||
# Path to the bash it configuration
|
||||
export BASH_IT="{{BASH_IT}}"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue