0

I tried to install an app written in Python using this command in terminal:

sudo make install

at the very last stage of installation, this message pops up:

[ -x /usr/bin/update-desktop-database ] && sudo update-desktop-database -q

I just want to know what it means and how to finish installation process.

kiri
  • 28,246
  • 16
  • 81
  • 118
Mehrdad
  • 3
  • 2

1 Answers1

2

The line

[ -x /usr/bin/update-desktop-database ] && sudo update-desktop-database -q

means "if /usr/bin/update-desktop-database exists and is executable then run sudo update-desktop-database -q.

The command update-desktop-database creates a database of MIME type handlers from the information found in the .desktop files in /usr/share/applications, /usr/local/share/applications and $HOME/.local/share/applications.

Most likely the installation process is finished now and you should be able to use the app.