mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 14:23:16 +02:00
9 lines
178 B
Bash
Executable File
9 lines
178 B
Bash
Executable File
#!/bin/bash
|
|
# Convenience wrapper for constrained Arch package builds.
|
|
|
|
set -euo pipefail
|
|
|
|
PACMAN_WRAPPER_BIN="/usr/bin/pacman"
|
|
|
|
exec "$PACMAN_WRAPPER_BIN" --makepkg-capped "$@"
|