diff options
| author | Irene Knapp <ireneista@irenes.space> | 2026-08-17 02:10:44 -0700 |
|---|---|---|
| committer | Irene Knapp <ireneista@irenes.space> | 2026-08-17 02:10:44 -0700 |
| commit | b14c2c4313cff700bfacde4c716e8effe68f66c1 (patch) | |
| tree | 0b88f060ea819cbb6c11fe6b024702aca755a567 | |
| parent | b52d1be4302e452a45a03595f8c70411a061f920 (diff) | |
don't print the asset list every build
it was nice while debugging the build script, but no longer useful Force-Push: yes Change-Id: I0caa4939b7cc3df8820b101aef270c3ea57b4e0f
| -rw-r--r-- | build.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/build.rs b/build.rs index 67fb6d3..d31f1cc 100644 --- a/build.rs +++ b/build.rs @@ -168,7 +168,6 @@ fn generate_asset_module(asset_paths: BTreeSet<PathBuf>) -> Result<()> { let source_dir = env::current_dir()?; - println!("cargo::warning=assets {:?}", asset_paths); writeln!(file, "#[deny(unsafe_code)]")?; writeln!(file, "pub fn asset(name: &str) -> crate::error::Result<&[u8]> {{")?; |