2018-02-17 20:04:57 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2018-02-17 20:09:46 +00:00
|
|
|
if [ ! -d ~/.local/profile-git ]; then
|
|
|
|
mkdir -p ~/.local/profile-git
|
2018-02-17 20:04:57 +00:00
|
|
|
git clone --recursive https://git.icedream.tech/icedream/profile.git ~/.local/profile-git
|
|
|
|
fi
|
|
|
|
|
|
|
|
(
|
|
|
|
cd ~/.local/profile-git
|
|
|
|
git pull
|
|
|
|
cd packages
|
|
|
|
./packages.sh
|
|
|
|
cd ..
|
|
|
|
./install.sh
|
|
|
|
)
|