Skip to content

Commit 5f2b069

Browse files
authored
Add apt-get update
1 parent 59999ea commit 5f2b069

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/run.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ function install_deps() {
2828
let runner_ = new toolrunner.ToolRunner('xcode-select', ['--install']);
2929
runner_.exec();
3030
} else {
31+
let runner0 = new toolrunner.ToolRunner('sudo',
32+
['apt-get', 'update']);
33+
runner0.exec();
3134
let runner_ = new toolrunner.ToolRunner('sudo',
3235
['apt-get', 'install', 'ruby-full', 'build-essential', 'postgresql', 'libpq-dev']);
3336
yield runner_.exec();

0 commit comments

Comments
 (0)