Skip to content

manager: support App Profile template #203

manager: support App Profile template

manager: support App Profile template #203

Triggered via push October 21, 2023 05:20
Status Success
Total duration 25s
Artifacts

rustfmt.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

4 warnings
rustfmt check: /home/runner/work/KernelSU/KernelSU/userspace/ksud/src/profile.rs#L45
Original: ``` return Ok(()) ``` Expected: ``` return Ok(()); ```
rustfmt check: /home/runner/work/KernelSU/KernelSU/userspace/ksud/src/cli.rs#L227
Original: ``` Profile::SetTemplate { id, template } => { crate::profile::set_template(id, template) }, ``` Expected: ``` Profile::SetTemplate { id, template } => crate::profile::set_template(id, template), ```
rustfmt check: /home/runner/work/KernelSU/KernelSU/userspace/ksud/src/apk_sign.rs#L84
Original: ``` return Err(anyhow::anyhow!( "Unexpected v3 signature found!", )); ``` Expected: ``` return Err(anyhow::anyhow!("Unexpected v3 signature found!",)); ```