We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf06eef commit 0d562ceCopy full SHA for 0d562ce
.github/actions/ubuntu-prerequisites/action.yml
@@ -6,7 +6,7 @@ runs:
6
steps:
7
- name: Remove preinstalled postgresql
8
run: |
9
- sudo apt update -qq
+ sudo apt-get update -qq
10
sudo apt-get remove -yq postgresql*
11
shell: bash
12
@@ -20,7 +20,7 @@ runs:
20
- name: Install lua
21
22
if [ -n "${LUA_VERSION}" ]; then
23
- sudo apt install -yq --no-install-suggests --no-install-recommends liblua${LUA_VERSION}-dev lua${LUA_VERSION}
+ sudo apt-get install -yq --no-install-suggests --no-install-recommends liblua${LUA_VERSION}-dev lua${LUA_VERSION}
24
fi
25
26
0 commit comments