katana/fetch.sh
Ivailo Monev 6aac635e57 fetsh.sh: swap the host
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2024-05-07 22:59:55 +03:00

22 lines
385 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://bitbucket.org/smil3y/$p.git"
fi
done