6 lines
231 B
Bash
Executable File
6 lines
231 B
Bash
Executable File
#!/bin/bash
|
|
echo "Waiting 60 seconds for GitHub mirror to sync..."
|
|
sleep 60
|
|
echo "Testing if test-mirror.txt is on GitHub..."
|
|
curl -I https://raw.githubusercontent.com/frostystyle/firefrost-operations-manual/master/test-mirror.txt
|