Use `apt-get` in makefile
`apt` is for interactive shell usage, using it in a script results in a warning as the CLI interface is not stable > WARNING: apt does not have a stable CLI interface. > Use with caution in scripts.pull/754/head
parent
3101f93d22
commit
232c889ce3
6
Makefile
6
Makefile
|
@ -85,13 +85,13 @@ update: web-deps-update cli-deps-update docs-deps-update
|
||||||
# Ubuntu-specific
|
# Ubuntu-specific
|
||||||
|
|
||||||
build-deps-ubuntu:
|
build-deps-ubuntu:
|
||||||
sudo apt update
|
sudo apt-get update
|
||||||
sudo apt install -y \
|
sudo apt-get install -y \
|
||||||
curl \
|
curl \
|
||||||
gcc-aarch64-linux-gnu \
|
gcc-aarch64-linux-gnu \
|
||||||
gcc-arm-linux-gnueabi \
|
gcc-arm-linux-gnueabi \
|
||||||
jq
|
jq
|
||||||
which pip3 || sudo apt install -y python3-pip
|
which pip3 || sudo apt-get install -y python3-pip
|
||||||
|
|
||||||
# Documentation
|
# Documentation
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue