Skip to content

Commit

Permalink
Rename to PteroTools
Browse files Browse the repository at this point in the history
  • Loading branch information
QuintenQVD0 committed Dec 29, 2023
1 parent 3da0299 commit b7c4071
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
name: PteroTools-${{ matrix.goos }}-${{ matrix.goarch }}.exe
path: dist/PteroTools-${{ matrix.goos }}-${{ matrix.goarch }}.exe
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down

0 comments on commit b7c4071

Please sign in to comment.