15 lines
371 B
Bash
Executable File
15 lines
371 B
Bash
Executable File
set -e
|
|
|
|
# Run the sub-scripts
|
|
sh /usr/local/bin/install-apk.sh
|
|
sh /usr/local/bin/install-rust.sh
|
|
sh /usr/local/bin/install-cargo-tools.sh
|
|
|
|
echo "Setting up dotfiles..."
|
|
mkdir -p $HOME/.config/dotfiles
|
|
if [ ! -d "$HOME/.config/dotfiles/.git" ]; then
|
|
git clone https://git.nubo.sh/hulthe/df.git $HOME/.config/dotfiles
|
|
fi
|
|
cd $HOME/.config/dotfiles
|
|
bash manager/setup.sh
|