Procházet zdrojové kódy

fix: add priority field in debian/control (#3865)

Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
Antoine Chauvin před 3 roky
rodič
revize
3bd3d923d3

+ 5 - 0
.changes/debian-priority.md

@@ -0,0 +1,5 @@
+---
+"tauri-bundler": patch
+---
+
+Set the Debian control file `Priority` field to `optional`.

+ 1 - 0
tooling/bundler/src/bundle/linux/debian.rs

@@ -203,6 +203,7 @@ fn generate_control_file(
       writeln!(file, " {}", line)?;
     }
   }
+  writeln!(file, "Priority: optional")?;
   file.flush()?;
   Ok(())
 }