We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea49a02 commit 5ef2dd1Copy full SHA for 5ef2dd1
1 file changed
KickAssemblerToDoxygen.py
@@ -170,10 +170,14 @@ def usage():
170
else:
171
print("Using " + sys.argv[1] + " command line arguments")
172
src_path = os.path.abspath(sys.argv[1])
173
- head_argument, tail_argument = os.path.split(src_path)
174
- out_path = head_argument + '/output'
+ if src_path[-1] != '/':
+ src_path += '/'
175
+
176
+ out_path = src_path + "../output"
177
check_folder(out_path)
178
179
+ print(out_path)
180
181
for file in Path(src_path).rglob("*.asm"):
182
relative_path = os.path.relpath(file, src_path)
183
output_file = out_path + "/" + relative_path
0 commit comments