fix: use correct config file

This commit is contained in:
파링 2023-02-05 18:40:25 +09:00 committed by GitHub
parent 0ba5cb31b4
commit 1384a5f64e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/bash
PORT=$(grep '^port:' example.yml | awk 'NR==1{print $2; exit}') PORT=$(grep '^port:' /misskey/.config/default.yml | awk 'NR==1{print $2; exit}')
curl -s -S -o /dev/null "http://localhost:${PORT}" curl -s -S -o /dev/null "http://localhost:${PORT}"