mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-09 00:23:52 +02:00
7 lines
226 B
Bash
Executable file
7 lines
226 B
Bash
Executable file
#!/bin/bash
|
|
source ../template
|
|
|
|
for i in $(seq -w 001 ${_bash_patchlevel}); do
|
|
curl https://ftp.gnu.org/gnu/bash/bash-$_bash_distver-patches/bash${_bash_distver//./}-$i \
|
|
> bash${_bash_distver//./}-${_bash_patchlevel}
|
|
done
|