diff options
author | Joshua Sing <joshua@hypera.dev> | 2023-12-15 16:25:26 +1100 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2024-03-03 15:32:50 -0600 |
commit | d8ade653138714ecc097b8e24d8c17e82d11c45b (patch) | |
tree | 305f38edad8034aae6440b1ddf7614f8d8d6aa52 /.github | |
parent | 3729a8d1a0b53d6d4fa4403f48b187882a712898 (diff) | |
download | portable-d8ade653138714ecc097b8e24d8c17e82d11c45b.tar.gz portable-d8ade653138714ecc097b8e24d8c17e82d11c45b.tar.bz2 portable-d8ade653138714ecc097b8e24d8c17e82d11c45b.zip |
ci: fix apt commands in solaris workflow
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/solaris.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/solaris.yml b/.github/workflows/solaris.yml index 415ff1f..2c6ee49 100644 --- a/.github/workflows/solaris.yml +++ b/.github/workflows/solaris.yml | |||
@@ -18,7 +18,8 @@ jobs: | |||
18 | 18 | ||
19 | - name: "Setup" | 19 | - name: "Setup" |
20 | run: | | 20 | run: | |
21 | apt-get install automake autoconf libtool | 21 | sudo apt-get update |
22 | sudo apt-get install -y automake autoconf libtool | ||
22 | ./autogen.sh | 23 | ./autogen.sh |
23 | 24 | ||
24 | - name: "Build on VM" | 25 | - name: "Build on VM" |