mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-29 07:05:16 +02:00
6 lines
101 B
Bash
Executable file
6 lines
101 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Update the "locate" database
|
|
if [ -x /usr/bin/updatedb ]; then
|
|
/usr/bin/updatedb
|
|
fi
|