Skip to content

Commit

Permalink
Add apt-get update
Browse files Browse the repository at this point in the history
  • Loading branch information
miloserdow authored Dec 2, 2019
1 parent 59999ea commit 5f2b069
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ function install_deps() {
let runner_ = new toolrunner.ToolRunner('xcode-select', ['--install']);
runner_.exec();
} else {
let runner0 = new toolrunner.ToolRunner('sudo',
['apt-get', 'update']);
runner0.exec();
let runner_ = new toolrunner.ToolRunner('sudo',
['apt-get', 'install', 'ruby-full', 'build-essential', 'postgresql', 'libpq-dev']);
yield runner_.exec();
Expand Down

0 comments on commit 5f2b069

Please sign in to comment.