Skip to content

Commit 4587231

Browse files
committed
0.20.4
1 parent 2f88346 commit 4587231

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -517,5 +517,5 @@
517517
"type": "git",
518518
"url": "https://github.com/sumneko/lua-language-server"
519519
},
520-
"version": "0.20.3"
520+
"version": "0.20.4"
521521
}

publish.lua

+8-4
Original file line numberDiff line numberDiff line change
@@ -209,21 +209,25 @@ end
209209
p:wait()
210210
print(p.stderr:read 'a')
211211

212-
subprocess.shell {
212+
local p =subprocess.shell {
213213
'git', 'add', '*',
214214
}
215+
p:wait()
215216

216-
subprocess.shell {
217+
local p = subprocess.shell {
217218
'git', 'commit', '-m', tostring(version),
218219
}
220+
p:wait()
219221

220-
subprocess.shell {
222+
local p = subprocess.shell {
221223
'git', 'tag', 'v' .. tostring(version),
222224
}
225+
p:wait()
223226

224-
subprocess.shell {
227+
local p = subprocess.shell {
225228
'git', 'push', '--tags',
226229
}
230+
p:wait()
227231

228232
local p, err = subprocess.shell {
229233
'vsce', 'publish',

0 commit comments

Comments
 (0)