Skip to content

Commit

Permalink
fix shell warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
antirais committed Jan 19, 2024
1 parent 19b0c90 commit c848718
Showing 1 changed file with 79 additions and 134 deletions.
213 changes: 79 additions & 134 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,284 +10,231 @@ C_RST="\033[0m"

# Check if script is run with sudo
if [ $EUID -eq 0 ]; then

echo -e ${C_RED}
echo -e "${C_RED}"
echo -e "Don't run this script with sudo, it will ask for sudo password when needed."

read -p $'\n'"Press Ctrl + C to cancel or Press any key to continue..."
echo -e ${C_RST}

read -rp $'\n'"Press Ctrl + C to cancel or Press any key to continue..."
echo -e "${C_RST}"
fi

makerc-vars-creator() {
# Checking if .makerc-vars already exists and asking for an overwrite
if [ -f .makerc-vars ]; then
echo -e "${C_RED}"
echo -e "$(pwd)/.makerc-vars already exists, do you want to overwrite it with $(pwd)/.makerc-vars.example?"
echo -e "${C_YELLOW}"

# Checking if .makerc-vars already exists and asking for an overwrite
if [ -f .makerc-vars ]; then

echo -e ${C_RED}
echo -e "$(pwd)/.makerc-vars already exists, do you want to overwrite it with $(pwd)/.makerc-vars.example?"
echo -e ${C_YELLOW}

options=(
"Yes"
"No"
)

select option in "${options[@]}"; do
case "$REPLY" in
yes|y|1) cp -f .makerc-vars.example .makerc-vars; break;;
no|n|2) echo -e "Not overwriting .makerc-vars"$'\n'; break;;
esac
done

echo -n -e ${C_RST}

else

cp -f .makerc-vars.example .makerc-vars

fi
options=(
"Yes"
"No"
)
select _ in "${options[@]}"; do
case "$REPLY" in
yes|y|1) cp -f .makerc-vars.example .makerc-vars; break;;
no|n|2) echo -e "Not overwriting .makerc-vars"$'\n'; break;;
esac
done

echo -n -e "${C_RST}"
else
cp -f .makerc-vars.example .makerc-vars
fi
}

if [ ! -f .makerc-vars ]; then

echo -e ${C_RED}
echo -e "${C_RED}"
echo -e "$(pwd)/.makerc-vars not found"
echo -e ${C_YELLOW}
echo -e "${C_YELLOW}"
echo -e "Do you want to create your .makerc-vars file from the $(pwd)/.makerc-vars.example file?"
echo -e

options=(
"Yes"
"No, I'm using custom .makerc-vars"
)

select option in "${options[@]}"; do
select _ in "${options[@]}"; do
case "$REPLY" in
yes|y|1) makerc-vars-creator; break;;
no|n|2) read -p $'\n'"Make sure your $(pwd)/.makerc-vars exists and press any key to continue"$'\n'; break;;
no|n|2) read -rp $'\n'"Make sure your $(pwd)/.makerc-vars exists and press any key to continue"$'\n'; break;;
esac
done

echo -n -e $C_RST

echo -n -e "$C_RST"
else

makerc-vars-creator

fi

# MacOS
if [[ $(uname) == "Darwin" ]]; then

echo -n -e ${C_MAGENTA}
echo -n -e "${C_MAGENTA}"
echo -e "Removing MacOS sudo requirement for Catapult..."
echo -e ${C_RST}
echo -e "${C_RST}"

sed -i "" "s#MAKEVAR_SUDO_COMMAND.*#MAKEVAR_SUDO_COMMAND :=#" .makerc-vars

brew-install() {

echo -n -e ${C_MAGENTA}
echo -n -e "${C_MAGENTA}"
echo -e "Installing Homebrew..."
echo -n -e ${C_RST}
echo -n -e "${C_RST}"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

}

brew-packages-install() {


if [[ -x "$(command -v brew)" ]]; then

echo -n -e ${C_MAGENTA}
echo -n -e "${C_MAGENTA}"
echo -e "Installing MacOS packages with homebrew..."
echo -n -e ${C_RST}

brew install ${BREW_PACKAGES[@]}
echo -n -e "${C_RST}"

brew install "${BREW_PACKAGES[@]}"
else

echo -n -e ${C_RED}
echo -n -e "${C_RED}"
echo -e "Homebrew not installed, cannot install:"
echo -e "$BREW_PACKAGES"
echo -n -e ${C_RST}
echo -n -e "${C_RST}"
exit 0

fi

}

BREW_PACKAGES="git git-lfs make jq curl md5sha1sum"

echo -n -e ${C_YELLOW}
echo -n -e "${C_YELLOW}"
echo -e "Installing homebrew?"
echo -e
echo

options=(
"Yes"
"No"
)

select option in "${options[@]}"; do
select _ in "${options[@]}"; do
case "$REPLY" in
yes|y|1) brew-install; break;;
no|n|2) read -p $'\n'"If you don't install homebrew you'll need to install Docker manually - Press any key to continue"$'\n'; break;;
no|n|2) read -rp $'\n'"If you don't install homebrew you'll need to install Docker manually - Press any key to continue"$'\n'; break;;
esac
done

echo -e ${C_RST}

echo -n -e ${C_YELLOW}
echo -n -e "${C_YELLOW}"
echo -e "Installing following packages with homebrew:"
echo -e $BREW_PACKAGES
echo -e
echo -e "$BREW_PACKAGES"
echo

options=(
"Yes"
"No, I'll install these packages myself"
)

select option in "${options[@]}"; do
case "$REPLY" in
case "$option" in
yes|y|1) brew-packages-install; break;;
no|n|2) read -p $'\n'"Make sure $BREW_PACKAGES are installed - Press any key to continue"$'\n'; break;;
no|n|2) read -rp $'\n'"Make sure $BREW_PACKAGES are installed - Press any key to continue"$'\n'; break;;
esac
done

echo -e ${C_RST}

echo -e "${C_RST}"
fi

# Linux
if [[ $(uname) == "Linux" ]]; then

if ! [ -x "$(command -v sudo)" ]; then

echo -e ${C_RED}
echo -e "sudo is not installed, install it and run this script again."
echo -e ${C_RST}
exit 0

echo -e "${C_RED}"
echo -e "sudo is not installed, install it and run this script again."
echo -e "${C_RST}"
exit 0
fi

# Debian based OS
if grep -q "debian" /etc/os-release; then

DEBIAN_PACKAGES="git git-lfs make jq curl sudo gpg ssh"

debian-packages-install() {

echo -n -e ${C_MAGENTA}
echo -n -e "${C_MAGENTA}"
echo -e "Installing required deb packages..."
echo -n -e ${C_RST}
echo -n -e "${C_RST}"

sudo -E apt-get update
sudo -E apt-get install $DEBIAN_PACKAGES -y
sudo -E apt-get install "$DEBIAN_PACKAGES" -y

if [ -n "$WSL_DISTRO_NAME" ]; then

sudo -E apt-get update
sudo -E apt-get install keychain -y

fi

}

echo -e ${C_YELLOW}
echo -e "${C_YELLOW}"
echo -e "Installing following packages:"
echo -e $DEBIAN_PACKAGES
echo -e
echo -e "$DEBIAN_PACKAGES"
echo

options=(
"Yes"
"No, I'll install these packages myself"
)

select option in "${options[@]}"; do
select _ in "${options[@]}"; do
case "$REPLY" in
yes|y|1) debian-packages-install; break;;
no|n|2) read -p $'\n'"Make sure $DEBIAN_PACKAGES are installed - Press any key to continue"$'\n'; break;;
no|n|2) read -rp $'\n'"Make sure $DEBIAN_PACKAGES are installed - Press any key to continue"$'\n'; break;;
esac
done

echo -e ${C_RST}

# Arch
elif grep -q "arch" /etc/os-release; then


ARCH_PACKAGES="git git-lfs make jq curl sudo"

arch-packages-install() {

echo -n -e ${C_MAGENTA}
echo -n -e "${C_MAGENTA}"
echo -e "Installing required pacman packages..."
echo -n -e ${C_RST}

sudo -E pacman -S $ARCH_PACKAGES --noconfirm
echo -n -e "${C_RST}"

sudo -E pacman -S "$ARCH_PACKAGES" --noconfirm
}

echo -e ${C_YELLOW}
echo -e "${C_YELLOW}"
echo -e "Installing following packages:"
echo -e $ARCH_PACKAGES
echo -e "$ARCH_PACKAGES"
echo -e

options=(
"Yes"
"No, I'll install these packages myself"
)

select option in "${options[@]}"; do
select _ in "${options[@]}"; do
case "$REPLY" in
yes|y|1) arch-packages-install; break;;
no|n|2) read -p $'\n'"Make sure $ARCH_PACKAGES are installed - Press any key to continue"$'\n'; break;;
no|n|2) read -rp $'\n'"Make sure $ARCH_PACKAGES are installed - Press any key to continue"$'\n'; break;;
esac
done

echo -e ${C_RST}

# RedHat based OS
elif grep -q "rhel" /etc/os-release; then

RHEL_PACKAGES="git git-lfs make jq curl sudo gpg openssh-server dnf-plugins-core"

rhel-packages-install() {

echo -n -e ${C_MAGENTA}
echo -n -e "${C_MAGENTA}"
echo -e "Installing required rhel packages..."
echo -n -e ${C_RST}
echo -n -e "${C_RST}"

sudo -E dnf makecache
sudo -E dnf install $RHEL_PACKAGES -y

sudo -E dnf install "$RHEL_PACKAGES" -y
}

echo -e ${C_YELLOW}
echo -e "${C_YELLOW}"
echo -e "Installing following packages:"
echo -e $RHEL_PACKAGES
echo -e
echo -e "$RHEL_PACKAGES"
echo

options=(
"Yes"
"No, I'll install these packages myself"
)

select option in "${options[@]}"; do
select _ in "${options[@]}"; do
case "$REPLY" in
yes|y|1) rhel-packages-install; break;;
no|n|2) read -p $'\n'"Make sure $RHEL_PACKAGES are installed - Press any key to continue"$'\n'; break;;
no|n|2) read -rp $'\n'"Make sure $RHEL_PACKAGES are installed - Press any key to continue"$'\n'; break;;
esac
done

echo -e ${C_RST}

# Other
else

echo -n -e ${C_RED}
echo -n -e "${C_RED}"
echo -e
echo -e "You are using unsupported or untested (Linux) operating system. Catapult may still work if you configure it manually"
echo -e
Expand All @@ -296,20 +243,18 @@ if [[ $(uname) == "Linux" ]]; then
echo -e "1) Install following packages: ${C_YELLOW}git git-lfs make jq curl sudo gpg ssh${C_RED}"
echo -e "2) Initialize git LFS with: ${C_YELLOW}git lfs install${C_RED}"
echo -e
read -p $'\n'"Once you have installed the required packages press any key to continue..."$'\n'
echo -e ${C_RST}


read -rp $'\n'"Once you have installed the required packages press any key to continue..."$'\n'
fi

echo -e "${C_RST}"
fi

echo -n -e ${C_MAGENTA}
echo -n -e "${C_MAGENTA}"
echo -e "Configuring githooks & LFS..."
echo -n -e ${C_RST}
echo -n -e "${C_RST}"

touch ~/.gitconfig
git config core.hooksPath .githooks
git lfs install

make prepare
make prepare

0 comments on commit c848718

Please sign in to comment.