forked from mirrors/nixpkgs
0b546fc53f
- https://github.com/fwupd/fwupd/releases/tag/1.6.0
- https://github.com/fwupd/fwupd/releases/tag/1.6.1
- https://github.com/fwupd/fwupd/releases/tag/1.6.2
- https://github.com/fwupd/fwupd/releases/tag/1.6.3
- https://github.com/fwupd/fwupd/releases/tag/1.6.4
- https://github.com/fwupd/fwupd/releases/tag/1.7.0
- https://github.com/fwupd/fwupd/releases/tag/1.7.1
Installed tests python not needed since the utility was moved to C code:
9d37e447a1
Co-Authored-By: Jan Tojnar <jtojnar@gmail.com>
14 lines
437 B
Diff
14 lines
437 B
Diff
diff --git a/plugins/redfish/fu-self-test.c b/plugins/redfish/fu-self-test.c
|
|
index 4710c769..1c68fdb9 100644
|
|
--- a/plugins/redfish/fu-self-test.c
|
|
+++ b/plugins/redfish/fu-self-test.c
|
|
@@ -27,7 +27,7 @@ fu_test_is_installed_test(void)
|
|
const gchar *builddir = g_getenv("G_TEST_BUILDDIR");
|
|
if (builddir == NULL)
|
|
return FALSE;
|
|
- return g_str_has_prefix(builddir, "/usr");
|
|
+ return g_str_has_prefix(builddir, "/nix");
|
|
}
|
|
|
|
static void
|