This saves bandwidth and CI image size. Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
10 lines
237 B
Bash
Executable file
10 lines
237 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
git clone --depth 1 --no-tags https://gitlab.freedesktop.org/pwithnall/malcontent.git
|
|
meson subprojects download --sourcedir malcontent
|
|
rm malcontent/subprojects/*.wrap
|
|
mv malcontent/subprojects/ .
|
|
rm -rf malcontent
|