Skip to content

Commit

Permalink
fixup! DroidBootFlow: Drop --retry from dmsetup
Browse files Browse the repository at this point in the history
  • Loading branch information
nift4 committed Jan 19, 2025
1 parent e82303f commit ccb6449
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/src/main/java/org/andbootmgr/app/util/SDLessUtils.kt
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ object SDLessUtils {
val dmPath = File(logic.dmBase, name)
if (SuFile.open(dmPath.toURI()).exists())
return Shell.cmd(
"dmsetup remove " + (if (force) "-f " else "") +
"--retry $name"
"dmsetup remove " + (if (force) "-f " else "") + name
).let {
if (terminal != null)
it.to(terminal)
Expand Down

0 comments on commit ccb6449

Please sign in to comment.