Files
linux-kernel-module-cheat/setup
Ciro Santilli 六四事件 法轮功 c2ac65a807 docker: split minimum setup to separate script
2018-11-17 00:00:00 +00:00

13 lines
197 B
Bash
Executable File

#!/usr/bin/env bash
# Minimum requirements to run ./build --download-dependencies
y=
if [ $# -eq 1 ]; then
y=-y
fi
apt-get update
apt-get install $y \
git \
python3 \
python3-distutils \
;