diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2018-04-22 18:26:18 -0400 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2018-04-22 18:26:18 -0400 |
| commit | 73692b5ba9f28b75e226152044b18409a7df7685 (patch) | |
| tree | 06e8dbb42994ee65c8c815de3c23e5d2a910716d /scripts/get_sources.sh | |
| parent | b3810b12552a937dcb6486ccf775a0bd9094db23 (diff) | |
| download | min-73692b5ba9f28b75e226152044b18409a7df7685.tar.gz min-73692b5ba9f28b75e226152044b18409a7df7685.tar.xz | |
Addex XZ as well as sources and a working "tar" for the system.
( I need to rename it to cpio )
Diffstat (limited to 'scripts/get_sources.sh')
| -rw-r--r-- | scripts/get_sources.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/get_sources.sh b/scripts/get_sources.sh index 538d03b..f9c3c3a 100644 --- a/scripts/get_sources.sh +++ b/scripts/get_sources.sh @@ -1,11 +1,11 @@ #!/bin/sh . ./.vars cd ${dist_dir} -wget -i ${base_dir}/sources.lst +for line in $(cat ${base_dir}/sources.lst); do + wget -c "$line" || echo "" +done # Because otherwise it's saved as 'mirror'... *sigh* wget -O php-7.2.4.tar.xz http://us3.php.net/get/php-7.2.4.tar.xz/from/this/mirror -git clone git://git.suckless.org/sbase -git clone git://git.suckless.org/ubase -git clone git://git.suckless.org/sinit -git clone https://github.com/voidlinux/void-runit +# git clone https://github.com/voidlinux/void-runit git clone https://github.com/irssi/irssi +git clone https://github.com/richfelker/musl-cross-make |
