Browse Source

fix debian-bash-upgrade

master
pvincent 8 months ago
parent
commit
937cb9936a
  1. 8
      install.sh

8
install.sh

@ -40,8 +40,14 @@ function install_host() {
echo "debian-bash has been deprecated!" echo "debian-bash has been deprecated!"
echo "--------------------------------" echo "--------------------------------"
if [[ -z "$PS1" ]]; then
read -rn1 -p 'Would you like to migrate to the new project named `miaou-bash`, (yN)?' answer read -rn1 -p 'Would you like to migrate to the new project named `miaou-bash`, (yN)?' answer
[[ -z "$PS1" ]] && answer='y'
else
echo "--------------------------------------------------"
echo "automatic migration from debian-bash to miaou-bash"
echo "--------------------------------------------------"
answer='y'
fi
if [[ "$answer" == 'y' ]];then if [[ "$answer" == 'y' ]];then
pushd /tmp pushd /tmp

Loading…
Cancel
Save