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

Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
This commit is contained in:
Antoine Chauvin
2022-04-20 01:03:04 +02:00
committed by GitHub
parent c479e979d9
commit 3bd3d923d3
2 changed files with 6 additions and 0 deletions

View File

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

View File

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