From 6e7c27f52c5d345fb7d1763ec7a46295550ea3bd Mon Sep 17 00:00:00 2001 From: purple Date: Tue, 30 May 2023 11:08:51 +0200 Subject: [PATCH] Add "tools" directory with expermental development tools. --- tools/tmp/hello.txt | 1 + tools/update.sh | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 tools/tmp/hello.txt create mode 100644 tools/update.sh diff --git a/tools/tmp/hello.txt b/tools/tmp/hello.txt new file mode 100644 index 0000000..c09f0d2 --- /dev/null +++ b/tools/tmp/hello.txt @@ -0,0 +1 @@ +This directory is used for storing temp files for Blueprint experimental tools. \ No newline at end of file diff --git a/tools/update.sh b/tools/update.sh new file mode 100644 index 0000000..2d65099 --- /dev/null +++ b/tools/update.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +# $1 Pterodactyl directory (/var/www/pterodactyl) + +cd $1/tools/tmp; +git clone https://github.com/teamblueprint/main.git; +cp -R main/* $1/; +rm -R $1/.blueprint; \ No newline at end of file