We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b615f99 commit 966e51fCopy full SHA for 966e51f
1 file changed
.github/workflows/update_formula.py
@@ -4,7 +4,7 @@ def update_version(version, revision):
4
formula = open('Formula/onesignal-cli.rb', 'r')
5
lines = formula.readlines()
6
lines[3] = " url \"https://github.com/OneSignal/cli.git\", tag: \"{}\", revision: \"{}\"\n".format(version, revision)
7
-
+ lines[5] = " version \"{}\"\n".format(version)
8
formula = open('Formula/onesignal-cli.rb', 'w')
9
formula.writelines(lines)
10
formula.close()
0 commit comments