katana/fetch.sh
Ivailo Monev cb0ab48cd6 generic: use https://scm.osdn.net/gitroot/kde/<repo>.git URLs everywhere
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2023-05-20 02:21:22 +03:00

22 lines
395 B
Bash
Executable file

#!/bin/bash
set -e
cwd="$(pwd)"
if ! type -p git ;then
echo "Git is not installed"
exit 1
fi
for p in "${packs[@]}";do
if [ -d "$p/.git" ];then
echo "Updating sources of $p..."
cd "$cwd/$p"
git pull
cd "$cwd"
else
echo "Fetching sources of $p..."
git clone --depth=1 "https://scm.osdn.net/gitroot/kde/Katie/$p.git"
fi
done