dead scripts

This commit is contained in:
Matthew Kennedy 2023-02-25 11:44:06 -08:00
parent 6c2e4f00f6
commit 4c6515a1ae
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; }