10 lines
251 B
Python
10 lines
251 B
Python
import re
|
|
|
|
with open('src/components/Header.tsx', 'r') as f:
|
|
content = f.read()
|
|
|
|
content = content.replace(" ONLINE V{publishedVersion}", " ONLINE")
|
|
|
|
with open('src/components/Header.tsx', 'w') as f:
|
|
f.write(content)
|