mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
d639219b94
fixes #4297
8 lines
128 B
Bash
8 lines
128 B
Bash
#!/usr/bin/env bash
|
|
set -eof pipefail
|
|
|
|
if test `find $1 -mmin +1440`; then
|
|
echo "forcing rebuild of status go"
|
|
rm $1
|
|
fi
|