Fix bad sed
filesystem should not have had .hpp added to it.
Change-Id: I46306cf1cc63070831c3b8410049a602c978f0f7
Signed-off-by: James Feist <james.feist@linux.intel.com>
diff --git a/include/filesystem.hpp b/include/filesystem.hpp
index ead619e..9915ee1 100644
--- a/include/filesystem.hpp
+++ b/include/filesystem.hpp
@@ -1,7 +1,7 @@
// this file splices filesystem in depending on the implementation
#if __has_include(<filesystem>)
-#include <filesystem.hpp>
+#include <filesystem>
#elif __has_include(<experimental/filesystem>)
#include <experimental/filesystem>
namespace std
@@ -11,4 +11,4 @@
} // namespace std
#else
#error filesystem not available
-#endif
\ No newline at end of file
+#endif