Run without Network Manager

This commit is contained in:
Robin E. R. Davies
2025-02-23 21:31:08 -05:00
parent 94b6ad930b
commit d954c06dc1
4 changed files with 56 additions and 11 deletions
+6 -1
View File
@@ -66,7 +66,12 @@ void SignPackage()
packagePath = fs::absolute(packagePath);
if (!fs::exists(packagePath))
{
throw std::runtime_error(SS("File does not exist: " << packagePath));
packagePath = SS("build/pipedal_" << PROJECT_VER << "_amd64.deb");
packagePath = fs::absolute(packagePath);
if (!fs::exists(packagePath)) {
packagePath = SS("build/pipedal_" << PROJECT_VER << "_*.deb");
throw std::runtime_error(SS("File does not exist: " << packagePath));
}
}
// sign the package.