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