13 lines
313 B
Bash
13 lines
313 B
Bash
#!/bin/bash
|
|
|
|
SRCD_URL=https://github.com/nomi-nonsz/PointsSystem.git
|
|
|
|
echo "Installing Points System"
|
|
|
|
cd $DIR_SOURCEMOD
|
|
|
|
git clone -b fix/sourcemod-1.10-enum --single-branch $SRCD_URL
|
|
|
|
rm -rvf $DIR_SOURCEMOD/PointsSystem/.git
|
|
cp -rv $DIR_SOURCEMOD/PointsSystem/* $DIR_SOURCEMOD
|
|
rm -rv $DIR_SOURCEMOD/PointsSystem |