remove old pinout scripts (#5131)

This commit is contained in:
David Holdeman 2023-02-25 13:26:53 -06:00 committed by GitHub
parent 83aabb4746
commit 4b8e5cd451
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 15 deletions

View File

@ -1,2 +0,0 @@
@echo off
bash.exe misc\jenkins\generate_pinouts\gen_upload_pinouts.sh

View File

@ -1,13 +0,0 @@
#!/bin/bash
misc/actions/pinouts-create.sh
if [ $? -ne 0 ]; then
exit 1
fi
if [ -n "$RUSEFI_SSH_SERVER" ]; then
echo "Uploading Pinouts..."
tar -czf - pinouts | sshpass -p "$RUSEFI_SSH_PASS" ssh -o StrictHostKeyChecking=no "$RUSEFI_SSH_USER"@"$RUSEFI_SSH_SERVER" "tar -xzf - -C docs"
fi
[ $? -eq 0 ] || { echo "upload FAILED"; exit 1; }