2023-05-30 05:08:51 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# $1 Pterodactyl directory (/var/www/pterodactyl)
|
|
|
|
|
|
|
|
cd $1/tools/tmp;
|
2023-06-12 09:49:55 -04:00
|
|
|
git clone https://github.com/teamblueprint/main.git;
|
2023-05-30 05:08:51 -04:00
|
|
|
cp -R main/* $1/;
|
2023-05-30 05:14:32 -04:00
|
|
|
rm -R $1/.blueprint;
|
2023-06-12 09:21:38 -04:00
|
|
|
rm -R *;
|
2023-06-12 09:49:55 -04:00
|
|
|
sed -E -i 's*SOURCE="n"*SOURCE="y"*g' $1/blueprint.sh;
|