From 9680f0cf12df55244b7e03ccd5861d5c0d1dbe6a Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Sat, 23 Dec 2023 20:53:31 +0100 Subject: [PATCH] refactor: Remove unnecessary quotation marks --- lib/services/root_api.dart | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/lib/services/root_api.dart b/lib/services/root_api.dart index 3d459688..dd2090ab 100644 --- a/lib/services/root_api.dart +++ b/lib/services/root_api.dart @@ -45,15 +45,15 @@ class RootAPI { try { final StringBuffer commands = StringBuffer(); if (permissions.isNotEmpty) { - commands.writeln('chmod $permissions "$filePath"'); + commands.writeln('chmod $permissions $filePath'); } if (ownerGroup.isNotEmpty) { - commands.writeln('chown $ownerGroup "$filePath"'); + commands.writeln('chown $ownerGroup $filePath'); } if (seLinux.isNotEmpty) { - commands.writeln('chcon $seLinux "$filePath"'); + commands.writeln('chcon $seLinux $filePath'); } await Root.exec( @@ -76,9 +76,7 @@ class RootAPI { Future> getInstalledApps() async { final List apps = List.empty(growable: true); try { - final String? res = await Root.exec( - cmd: 'ls "$_revancedDirPath"', - ); + final String? res = await Root.exec(cmd: 'ls $_revancedDirPath'); if (res != null) { final List list = res.split('\n'); list.removeWhere((pack) => pack.isEmpty); @@ -105,7 +103,7 @@ class RootAPI { Future removeOrphanedFiles() async { await Root.exec( cmd: ''' - find "$_revancedDirPath" -type f -name original.apk -delete + find $_revancedDirPath -type f -name original.apk -delete for file in "$_serviceDDirPath"/*; do filename=\$(basename "\$file") if [ -f "$_postFsDataDirPath/\$filename" ]; then @@ -142,7 +140,7 @@ class RootAPI { Future installServiceDScript(String packageName) async { await Root.exec( - cmd: 'mkdir -p "$_serviceDDirPath"', + cmd: 'mkdir -p $_serviceDDirPath', ); final String mountScript = ''' #!/system/bin/sh @@ -177,8 +175,8 @@ class RootAPI { final String newPatchedFilePath = '$_revancedDirPath/$packageName/base.apk'; await Root.exec( cmd: ''' - mkdir -p "$_revancedDirPath/$packageName" - cp "$patchedFilePath" "$newPatchedFilePath" + mkdir -p $_revancedDirPath/$packageName + cp "$patchedFilePath" $newPatchedFilePath ''', ); await setPermissions(