[Build] Fix wrong relative path in maketfm.py (#2059)
authorWonYoung Choi <wy80.choi@samsung.com>
Tue, 29 Sep 2020 02:05:50 +0000 (11:05 +0900)
committerGitHub <noreply@github.com>
Tue, 29 Sep 2020 02:05:50 +0000 (11:05 +0900)
packaging/maketfm.py

index 3641785..0ff702e 100644 (file)
@@ -3,7 +3,8 @@ import xml.etree.ElementTree as ET
 
 scrpit_dir = os.path.dirname(os.path.abspath(__file__))
 spec_dir = os.path.join(scrpit_dir, "csapi-tizenfx.spec")
-tree = ET.parse("../pkg/Tizen.NET/Tizen.NET.nuspec")
+nuspec_file = os.path.join(scrpit_dir, "../pkg/Tizen.NET/Tizen.NET.nuspec")
+tree = ET.parse(nuspec_file)
 root = tree.getroot()
 
 tfm_list = []