Function: projectile-install-command

projectile-install-command is a byte-compiled function defined in projectile.el.

Signature

(projectile-install-command COMPILE-DIR)

Documentation

Retrieve the install command for COMPILE-DIR.

Checks projectile-install-cmd-map for the last install command that was invoked on the project, then projectile-project-install-cmd supplied via .dir-locals.el and finally the default install command for a project of that type.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-install-command (compile-dir)
  "Retrieve the install command for COMPILE-DIR.
Checks `projectile-install-cmd-map' for the last install command that
was invoked on the project, then `projectile-project-install-cmd'
supplied via .dir-locals.el and finally the default install command
for a project of that type."
  (projectile--phase-command 'install compile-dir))