mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-03 13:11:31 +00:00
14 lines
265 B
Bash
14 lines
265 B
Bash
![]() |
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
REAL_SCRIPT="$(realpath "${0}")"
|
||
|
cd "$(dirname "${REAL_SCRIPT}")/../.."
|
||
|
KRATA_DIR="${PWD}"
|
||
|
KERNEL_DIR="${KRATA_DIR}/kernel"
|
||
|
|
||
|
# shellcheck disable=SC2010
|
||
|
for ITEM in $(ls "${KERNEL_DIR}" | grep "^linux-")
|
||
|
do
|
||
|
rm -rf "${KERNEL_DIR:?}/${ITEM}"
|
||
|
done
|