mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-09 02:46:16 +01:00
10 lines
177 B
Bash
10 lines
177 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
git clone https://gitlab.gnome.org/GNOME/glib.git
|
||
|
meson subprojects download --sourcedir glib
|
||
|
rm glib/subprojects/*.wrap
|
||
|
mv glib/subprojects/ .
|
||
|
rm -rf glib
|