For the zypper install script, there was a spelling mistake in `libopenssl-devel`, this is required for compiling configz. On WSL git is not installed by default, this now installs it so we can download the stuff. In the conditions to see if packages are installed, there are no quotes around the commands. This is then giving false positives and not installing configz or the rust toolchain. This has now been sorted so its all good.
23 lines
670 B
Bash
Executable file
23 lines
670 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ -x "$(command -v zypper)" ]; then
|
|
sudo zypper install --type pattern devel_basis
|
|
sudo zypper install libopenssl-devel git
|
|
else
|
|
echo "ERROR: Package manager not found. Could not install"
|
|
fi
|
|
|
|
if [ ! -x "$(command -v cargo)" ]; then
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
|
source "$HOME/.cargo/env"
|
|
fi
|
|
|
|
if [ ! -x "$(command -v configz)" ]; then
|
|
cargo install --git https://github.com/AdeAttwood/Configz
|
|
fi
|
|
|
|
if [ ! -d ~/Code/src/github.com/AdeAttwood/Dotfiles ]; then
|
|
git clone https://github.com/AdeAttwood/Dotfiles.git ~/Code/src/github.com/AdeAttwood/Dotfiles
|
|
fi
|
|
|
|
echo "cd ~/Code/src/github.com/AdeAttwood/Dotfiles"
|