mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
10 lines
180 B
Bash
Executable file
10 lines
180 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Update the "locate" database
|
|
if [ -x /usr/bin/updatedb ]; then
|
|
if [ -f /etc/updatedb.conf ]; then
|
|
/usr/bin/updatedb
|
|
else
|
|
/usr/bin/updatedb -f proc
|
|
fi
|
|
fi
|