##// END OF EJS Templates
release 7.29.0
Matthias Bussonnier -
Show More
@@ -24,7 +24,7 b' _version_minor = 29'
24 24 _version_patch = 0
25 25 _version_extra = '.dev'
26 26 # _version_extra = 'b1'
27 # _version_extra = "" # Uncomment this for full releases
27 _version_extra = "" # Uncomment this for full releases
28 28
29 29 # Construct full version string from these.
30 30 _ver = [_version_major, _version_minor, _version_patch]
@@ -38,9 +38,13 b' ask_section(){'
38 38 echo
39 39 echo $BLUE"$1"$NOR
40 40 echo -n $GREEN"Press Enter to continue, S to skip: "$NOR
41 read -n1 value
42 echo
43 if [ -z $value ] || [ $value = 'y' ] ; then
41 if [ "$ZSH_NAME" = "zsh" ] ; then
42 read -k1 value
43 value=${value%$'\n'}
44 else
45 read -n1 value
46 fi
47 if [ -z "$value" ] || [ $value = 'y' ]; then
44 48 return 0
45 49 fi
46 50 return 1
General Comments 0
You need to be logged in to leave comments. Login now