mirror of
https://bitbucket.org/smil3y/katana.git
synced 2025-02-23 10:22:46 +00:00
18 lines
392 B
Bash
18 lines
392 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
packs=("ariya-icons" "kdelibs" "kde-baseapps" "kde-workspace" "kde-extraapps" "kde-l10n")
|
||
|
cwd="$(pwd)"
|
||
|
for p in "${packs[@]}";do
|
||
|
if [ -d "$p" ];then
|
||
|
echo "Updating sources of $p..."
|
||
|
cd "$cwd/$p"
|
||
|
git pull
|
||
|
cd "$cwd"
|
||
|
else
|
||
|
echo "Fetching sources of $p..."
|
||
|
git clone --depth=1 "https://github.com/fluxer/$p"
|
||
|
fi
|
||
|
done
|