10 lines
256 B
Bash
Executable File
10 lines
256 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
repo_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
|
|
|
rm -rf "${repo_root}/packages"
|
|
find "${repo_root}/packaging/alpine/local" \
|
|
\( -type d -name pkg -o -type d -name src \) \
|
|
-prune -exec rm -rf {} +
|