From dba664e558bdfcee60c1d41604da036f2d35cabf Mon Sep 17 00:00:00 2001 From: Riadh Habbachi Date: Wed, 26 Apr 2017 18:37:17 +0200 Subject: [PATCH] Fix the `ahoy dkan uli` output (#1725) * Fix the `ahoy dkan uli` output This change was reviewed and introduced initially to dkan_starter https://github.com/NuCivic/dkan_starter/pull/86 The previous `ahoy dkan uli` output is plagued with extra space that made it difficult to strait copy and paste the command output. * Add CHANGELOG line * Update CHANGELOG.txt --- .ahoy/dkan.ahoy.yml | 3 +-- CHANGELOG.txt | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.ahoy/dkan.ahoy.yml b/.ahoy/dkan.ahoy.yml index 54fe97de0a..39c22c0645 100644 --- a/.ahoy/dkan.ahoy.yml +++ b/.ahoy/dkan.ahoy.yml @@ -187,8 +187,7 @@ commands: uli: usage: log into the cmd: | - uli=$(ahoy drush uli {{args}} | sed 's/^http.*\/default\/\(.*$\)/\1/g') - url="$(ahoy docker url)/$uli" + url=$(ahoy drush --uri="$(ahoy docker url)" uli {{args}}) os=$(uname) if [ "$os" = "Darwin" ]; then diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 0f2126d80f..80983819f6 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,5 +1,6 @@ 7.x-1.14.x ---------- + - #1725 Fix `ahoy dkan uli` output login link. - #1881 Fix yaml syntaxt to make it standard. - #1853 Update chart documentation. - #1839 Add help text and improve UI on the chart form for better clarity.