Introducing LunaBuild to the build flow (#36)
[lunaix-os.git] / lunaix-os / scripts / build-tools / lib / utils.py
diff --git a/lunaix-os/scripts/build-tools/lib/utils.py b/lunaix-os/scripts/build-tools/lib/utils.py
new file mode 100644 (file)
index 0000000..361b786
--- /dev/null
@@ -0,0 +1,6 @@
+import os
+
+def join_path(stem, path):
+    if os.path.isabs(path):
+        return path
+    return os.path.join(stem, path)
\ No newline at end of file