Skip to content
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.

Commit

Permalink
bug in rust_embed
Browse files Browse the repository at this point in the history
  • Loading branch information
Arturmes committed Sep 27, 2024
1 parent 101c363 commit 2a3c051
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apd/src/assets.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use anyhow::Result;
use const_format::concatcp;
use rust_embed::RustEmbed;
use rust_embed::Embed;

use crate::{defs::BINARY_DIR, utils};

Expand All @@ -9,7 +9,7 @@ pub const BUSYBOX_PATH: &str = concatcp!(BINARY_DIR, "busybox");
pub const MAGISKPOLICY_PATH: &str = concatcp!(BINARY_DIR, "magiskpolicy");

#[cfg(target_arch = "arm")]
#[derive(RustEmbed)]
#[derive(Embed)]
#[folder = "/home/runner/work/APatch32/APatch32/app/libs/armeabi-v7a"]
struct Asset;

Expand Down

0 comments on commit 2a3c051

Please sign in to comment.