Changes between Initial Version and Version 2 of Ticket #1369
- Timestamp:
- 05/23/11 12:09:24 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1369
- Property Milestone → 7.0.0
-
Ticket #1369 – Description
initial v2 3 3 I use a customized one to have some different information/coloring of the prompt in the case of git and hg repos: 4 4 5 {{{ 5 6 function setPrompt(){ 6 7 thedate=`date "+%F %T"` … … 36 37 fi 37 38 } 38 39 }}} 39 40 40 41 which leads me to the error in the subject. 41 42 42 43 While for example in grass64 I have: 44 45 {{{ 43 46 GRASS 6.4.0+42329 (gbovest):~ > echo $PROMPT_COMMAND 44 47 '/usr/lib/grass64/etc/prompt.sh' 48 }}} 45 49 46 50 in grass7 it seems to have changed to: 51 52 {{{ 47 53 echo $PROMPT_COMMAND 48 54 PS1="$(setPrompt)" 55 }}} 49 56 50 57 … … 56 63 57 64 58 59