7 with open("test.txt") as file:
8 print(file.read())
9
10+ with open("dist/gen.txt") as file:
11+ file.write("I am generated by the CI script!\n")
12+
13+ with open("public/gen.txt") as file:
14+ file.write("Mee tooo!!!\n")
15+
16
17 if __name__ == "__main__":
18 main()