Change extension of service file

This commit is contained in:
Maurice
2025-09-30 13:04:06 +02:00
parent 4c7d1a857e
commit 1953f8cf1c
4 changed files with 47 additions and 34 deletions
+1 -1
View File
@@ -305,7 +305,7 @@ fn main() {
// Write
for config in services {
let output = generate_openrc(&config);
fs::write(output_path.join(format!("{}.service.sh", config.service.name)), output)
fs::write(output_path.join(format!("{}.service", config.service.name)), output)
.expect("Failed to write OpenRC script to output file");
}
} else {