mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
fb25985b91
This is a bit weird with the Rakefiles but makes it consistent. Found with rpmlint.
11 lines
142 B
Bash
Executable File
11 lines
142 B
Bash
Executable File
#!/bin/bash
|
|
FILE=/tmp/curl_done
|
|
|
|
if [ -f $FILE ]
|
|
then
|
|
echo "File $FILE exists..."
|
|
else
|
|
curl --retry 5 localhost
|
|
touch /tmp/curl_done
|
|
fi
|