mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-08 13:36:58 +02:00
Minimal sysext containing dev-lang/python and dev-python/pip. Enabled ensurepip for python and added required packages from Gentoo.
11 lines
126 B
Bash
Executable File
11 lines
126 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
rootfs="${1}"
|
|
|
|
pushd "${rootfs}"
|
|
|
|
rm -rf ./usr/{lib/debug,share,include,lib64/pkgconfig}
|
|
|
|
popd
|