emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/drupal-mode 57897dbed5 125/308: Fixed locating drush versi


From: ELPA Syncer
Subject: [nongnu] elpa/drupal-mode 57897dbed5 125/308: Fixed locating drush version number.
Date: Tue, 25 Jan 2022 10:59:37 -0500 (EST)

branch: elpa/drupal-mode
commit 57897dbed5957e9b30f919756ad30c51b2d6c364
Author: Arne Jørgensen <arne@arnested.dk>
Commit: Arne Jørgensen <arne@arnested.dk>

    Fixed locating drush version number.
    
    Now works with Drush 6.x.
---
 drupal-mode.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drupal-mode.el b/drupal-mode.el
index 0af85a91ef..27e91419cf 100644
--- a/drupal-mode.el
+++ b/drupal-mode.el
@@ -132,7 +132,7 @@ Include path to the executable if it is not in your $PATH."
                                    "[\n\r]" ""
                                    (with-output-to-string
                                      (with-current-buffer standard-output
-                                       (call-process drupal-drush-program nil 
(list t nil) nil "--version" "--pipe")))))
+                                       (call-process drupal-drush-program nil 
(list t nil) nil "core-status" "drush-version" "--pipe")))))
   "Version number of the installed version Drush."
   :type 'string
   :link '(variable-link drupal-drush-program)
@@ -396,7 +396,7 @@ should save your files with unix style end of line."
         (php-search-documentation))
        ((and drupal-drush-program (string-match "drush" (symbol-name symbol)))
         (browse-url
-         (format-spec drupal-drush-search-url `((?v . 
,(replace-regexp-in-string ".*-dev" "master" (replace-regexp-in-string 
"\.[0-9]+\\'" ".x" drupal-drush-version)))
+         (format-spec drupal-drush-search-url `((?v . 
,(replace-regexp-in-string "\\([0-9]+\.\\).*\\'" "\\1x" drupal-drush-version))
                                                 (?s . ,symbol)))))
        (t (browse-url
            (format-spec drupal-search-url `((?v . ,(drupal-major-version 
drupal-version))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]