18 lines
317 B
Python
18 lines
317 B
Python
|
import os.path
|
||
|
import sys
|
||
|
import os.path
|
||
|
|
||
|
arguments = sys.argv[1:]
|
||
|
|
||
|
build_no = arguments[0]
|
||
|
|
||
|
result = ""
|
||
|
|
||
|
if os.path.exists("rmse.txt"):
|
||
|
with open("rmse.txt", "r") as file:
|
||
|
for line in file.readlines():
|
||
|
result = line
|
||
|
|
||
|
with open("bulk_metrics.txt", "a") as file:
|
||
|
file.write(result)
|