mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
11 lines
180 B
Text
11 lines
180 B
Text
|
#!/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
|