3 echo '########################################################################'
4 echo 'You must setup shell intergration for go by running "python2 -m go"'
5 echo 'Or copy and paste text below into $HOME/.bashrc or $HOME/.bash_profile'
7 echo '# Bash shell driver for 'go' (http://code.google.com/p/go-tool/).'
9 echo ' export GO_SHELL_SCRIPT=$HOME/.__tmp_go.sh'
10 echo ' python2 -m go $*'
11 echo ' if [ -f $GO_SHELL_SCRIPT ] ; then'
12 echo ' source $GO_SHELL_SCRIPT'
14 echo ' unset GO_SHELL_SCRIPT'
17 echo '##########################################################################'
22 echo '########################################################################'
23 echo 'You can remove shell intergration lines from $HOME/.bashrc or $HOME/.bash_profile'
24 echo 'I will work on the pkgbuild adding and removing this text in the future.'
26 echo '# Bash shell driver for 'go' (http://code.google.com/p/go-tool/).'
28 echo ' export GO_SHELL_SCRIPT=$HOME/.__tmp_go.sh'
29 echo ' python2 -m go $*'
30 echo ' if [ -f $GO_SHELL_SCRIPT ] ; then'
31 echo ' source $GO_SHELL_SCRIPT'
33 echo ' unset GO_SHELL_SCRIPT'
36 echo '##########################################################################'