5 Zeilen
105 B
Bash
5 Zeilen
105 B
Bash
#!/bin/bash
|
|
set -eu -o pipefail
|
|
makepkg -s --needed --noconfirm
|
|
mkdir -p packages
|
|
cp ../*.pkg.* packages
|