mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +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
|