From b7c4071251b04140381746dbdfb4d251cabfa318 Mon Sep 17 00:00:00 2001 From: Quinten Date: Fri, 29 Dec 2023 18:50:28 +0100 Subject: [PATCH] Rename to PteroTools --- .github/workflows/push.yml | 12 ++++++------ README.md | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 58c773c..53235cb 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -45,20 +45,20 @@ jobs: GOARCH: ${{ matrix.goarch }} CGO_ENABLED: 0 run: | - go build -o dist/pssu-${{ matrix.goos }}-${{ matrix.goarch }} + go build -o dist/PteroTools-${{ matrix.goos }}-${{ matrix.goarch }} if [ "${{ matrix.goos }}" = "windows" ]; then - mv dist/pssu-${{ matrix.goos }}-${{ matrix.goarch }} dist/pssu-${{ matrix.goos }}-${{ matrix.goarch }}.exe + mv dist/PteroTools-${{ matrix.goos }}-${{ matrix.goarch }} dist/PteroTools-${{ matrix.goos }}-${{ matrix.goarch }}.exe fi chmod 755 dist/* - uses: actions/upload-artifact@v3 if: matrix.goos == 'linux' with: - name: pssu-${{ matrix.goos }}-${{ matrix.goarch }} - path: dist/pssu-${{ matrix.goos }}-${{ matrix.goarch }} + name: PteroTools-${{ matrix.goos }}-${{ matrix.goarch }} + path: dist/PteroTools-${{ matrix.goos }}-${{ matrix.goarch }} - uses: actions/upload-artifact@v3 if: matrix.goos == 'windows' with: - name: pssu-${{ matrix.goos }}-${{ matrix.goarch }}.exe - path: dist/pssu-${{ matrix.goos }}-${{ matrix.goarch }}.exe \ No newline at end of file + name: PteroTools-${{ matrix.goos }}-${{ matrix.goarch }}.exe + path: dist/PteroTools-${{ matrix.goos }}-${{ matrix.goarch }}.exe \ No newline at end of file diff --git a/README.md b/README.md index 43cee1d..8a9dfcf 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Pterodactyl Tools +# PteroTools This is a very simple Golang application that connects to the Pterodactyl panel database. Gets the startup from the provided egg ID and then see if it matches, if not you can update the startup to the current one from the egg, leave it like it is or apply the updated startup to all servers using that egg. This is mainly made for if with an egg update, the startup gets updated, and you do not want to go and manual change every startup of already running servers. It now also supports stopping stuck server transfers.