Skip to content
This repository was archived by the owner on Nov 19, 2019. It is now read-only.

Commit 1824ca3

Browse files
committed
Use apt-get instead of apt, add missing sudo
1 parent a9df7da commit 1824ca3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ci-build.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
set -e
33
sourcedir="$PWD"
44
# install dependencies
5-
sudo apt update
6-
sudo apt install apt-transport-https ca-certificates gnupg \
5+
sudo apt-get update
6+
sudo apt-get install apt-transport-https ca-certificates gnupg \
77
software-properties-common wget git cmake ninja-build clang python uuid-dev \
88
libicu-dev icu-devtools libbsd-dev libedit-dev libxml2-dev libsqlite3-dev \
99
swig libpython-dev libncurses5-dev pkg-config libblocksruntime-dev \
1010
libcurl4-openssl-dev systemtap-sdt-dev tzdata rsync
1111
# install latest cmake
1212
wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | sudo apt-key add -
1313
sudo apt-add-repository 'deb https://apt.kitware.com/ubuntu/ xenial main'
14-
sudo apt update
15-
apt install cmake
14+
sudo apt-get update
15+
sudo apt-get install cmake
1616
# install the WASI sdk
1717
wget -O wasisdk.deb "https://github.com/swiftwasm/wasi-sdk/releases/download/20190421.6/wasi-sdk_3.19gefb17cb478f9.m_amd64.deb"
1818
sudo dpkg -i wasisdk.deb

0 commit comments

Comments
 (0)