Replace unzip with make in package list
This commit is contained in:
parent
b8c9603c71
commit
c68c9b5e0d
|
|
@ -80,8 +80,8 @@ async function createContainer(home: string): Promise<void> {
|
||||||
/** Install base system packages (as root). */
|
/** Install base system packages (as root). */
|
||||||
async function installPackages(cached: boolean): Promise<void> {
|
async function installPackages(cached: boolean): Promise<void> {
|
||||||
const packages = cached
|
const packages = cached
|
||||||
? "curl git fish"
|
? "curl git fish make"
|
||||||
: "curl git fish unzip"
|
: "curl git fish unzip make"
|
||||||
await run(
|
await run(
|
||||||
$`container exec ${CONTAINER_NAME} bash -c ${`apt update && apt install -y ${packages}`}`,
|
$`container exec ${CONTAINER_NAME} bash -c ${`apt update && apt install -y ${packages}`}`,
|
||||||
"Package installation")
|
"Package installation")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user