Skip to content

Commit fa5e082

Browse files
committed
i may be stupid
1 parent d123833 commit fa5e082

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

dependencies/python/gen_version.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
import sys
55

66
commit = subprocess.check_output(["git", "describe", "--always", "--dirty"],text=True).strip("\n")
7-
version = "1.1.0-nightly+{commit}"
7+
version = f"1.1.0-nightly+{commit}"
88

99
path = sys.argv[1]
1010

1111
f = open(path, "w")
1212

13-
f.write(f'(message_motd "Rock Band 3 Deluxe 1.1.0-nightly+{commit} Loaded! Thanks for playing!")\n')
14-
f.write(f'(message_motd_signin "Rock Band 3 Deluxe 1.1.0-nightly+{commit} Loaded! Thanks for playing!")\n')
15-
f.write(f'(message_motd_noconnection "Rock Band 3 Deluxe 1.1.0-nightly+{commit} Loaded! Thanks for playing!")\n')
16-
f.write(f'(rb3e_mod_string "RB3DX 1.1.0-nightly+{commit}")\n')
13+
f.write(f'(message_motd "Rock Band 3 Deluxe {version} Loaded! Thanks for playing!")\n')
14+
f.write(f'(message_motd_signin "Rock Band 3 Deluxe {version} Loaded! Thanks for playing!")\n')
15+
f.write(f'(message_motd_noconnection "Rock Band 3 Deluxe {version} Loaded! Thanks for playing!")\n')
16+
f.write(f'(rb3e_mod_string "RB3DX {version}")\n')
1717

1818
f.close()

0 commit comments

Comments
 (0)