Remove Curl-installation.sh

This commit is contained in:
blusewill 2023-08-31 20:42:54 +08:00
parent d061cf97aa
commit 9c271fdd91
1 changed files with 0 additions and 23 deletions

View File

@ -1,23 +0,0 @@
#!/bin/bash
# Checking if is running in Repo Folder
if [[ "$(basename "$(pwd)" | tr '[:upper:]' '[:lower:]')" =~ ^archtitus$ ]]; then
echo "You are running this in ArchTitus Folder."
echo "Please use ./archtitus.sh instead"
fi
# Install git
echo "Installing git."
pacman -Sy --noconfirm --needed git glibc
echo "Cloning the ArchTitus Project"
git clone https://github.com/christitustech/ArchTitus
echo "Executing ArchTitus Script"
cd $HOME/ArchTitus
exec ./archtitus.sh
exit