2015-04-10 13:40:02 +00:00
|
|
|
#!/bin/sh
|
2015-04-09 22:53:46 +00:00
|
|
|
#
|
|
|
|
# changed_templates.sh
|
|
|
|
|
2019-03-07 02:14:51 +00:00
|
|
|
if command -v chroot-git >/dev/null 2>&1; then
|
|
|
|
GIT_CMD=$(command -v chroot-git)
|
|
|
|
elif command -v git >/dev/null 2>&1; then
|
|
|
|
GIT_CMD=$(command -v git)
|
|
|
|
fi
|
|
|
|
|
2015-04-09 22:53:46 +00:00
|
|
|
/bin/echo -e '\x1b[32mFetching upstream...\x1b[0m'
|
2019-03-07 02:14:51 +00:00
|
|
|
$GIT_CMD fetch --depth 200 git://github.com/void-linux/void-packages.git master
|