diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2020-07-21 17:33:15 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2020-07-21 17:33:15 -0300 |
commit | f6ff8590063ece57e149042aae55657053c13e8b (patch) | |
tree | 8ada239d6170310950c18d9aaeeb7827021eb24c /files | |
parent | 0d9b68879186c5d139a45fca0ae144347b4c6d52 (diff) | |
download | puppet-drupal-f6ff8590063ece57e149042aae55657053c13e8b.tar.gz puppet-drupal-f6ff8590063ece57e149042aae55657053c13e8b.tar.bz2 |
Fix: typo
Diffstat (limited to 'files')
-rwxr-xr-x | files/drupal | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/drupal b/files/drupal index 705c209..7a65c26 100755 --- a/files/drupal +++ b/files/drupal @@ -174,7 +174,7 @@ function drupal_latest { fi if [ "$series" == "9" ]; then - latest="`wget -O- -q https://www.drupal.org/node/3060/release/feed | grep "<link>" ~/load/feed | grep "releases/9." | cut -d "/" -f 7 | cut -d '<' -f 1 | sort -r | head -1`" + latest="`wget -O- -q https://www.drupal.org/node/3060/release/feed | grep "<link>" grep "releases/9." | cut -d "/" -f 7 | cut -d '<' -f 1 | sort -r | head -1`" echo $latest else latest="`wget -O- -q https://updates.drupal.org/release-history/drupal/${series}.x | grep -oPm1 "(?<=<download_link>)[^<]+" | grep -v -- '-dev' | grep -v -- '-alpha' | grep -v -- '-beta' | grep -v -- '-rc' | head -1`" |