Fix logic

This commit is contained in:
LukeZGD 2024-03-07 09:44:26 +08:00
parent 04a6eaecb7
commit a4d2fe2ade

View File

@ -6141,7 +6141,7 @@ device_dumprd() {
print "* Reminder to backup dump tars if needed" print "* Reminder to backup dump tars if needed"
if [[ -s $dump/baseband.tar ]]; then if [[ -s $dump/baseband.tar ]]; then
read -p "$(input "Baseband dump exists in $dump/baseband.tar. Overwrite? (y/N) ")" opt read -p "$(input "Baseband dump exists in $dump/baseband.tar. Overwrite? (y/N) ")" opt
if [[ $opt == 'Y' && $opt == 'y' ]]; then if [[ $opt == 'Y' || $opt == 'y' ]]; then
log "Deleting existing dumped baseband" log "Deleting existing dumped baseband"
rm $dump/baseband.tar rm $dump/baseband.tar
cp baseband.tar $dump cp baseband.tar $dump
@ -6169,7 +6169,7 @@ device_dumprd() {
$scp -P $ssh_port root@127.0.0.1:$tmp/activation.tar . $scp -P $ssh_port root@127.0.0.1:$tmp/activation.tar .
if [[ -s $dump/activation.tar ]]; then if [[ -s $dump/activation.tar ]]; then
read -p "$(input "Activation records dump exists in $dump/activation.tar. Overwrite? (y/N) ")" opt read -p "$(input "Activation records dump exists in $dump/activation.tar. Overwrite? (y/N) ")" opt
if [[ $opt == 'Y' && $opt == 'y' ]]; then if [[ $opt == 'Y' || $opt == 'y' ]]; then
log "Deleting existing dumped activation" log "Deleting existing dumped activation"
rm $dump/activation.tar rm $dump/activation.tar
cp activation.tar $dump cp activation.tar $dump