Skip to content

Commit

Permalink
Show path to data in Composer output.
Browse files Browse the repository at this point in the history
  • Loading branch information
schlessera committed Aug 1, 2016
1 parent 02d7a84 commit 17b162f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/CountryPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @package BrightNucleus\CountryCodes
* @author Alain Schlesser <[email protected]>
* @license GPL-2.0+
* @license MIT
* @link http://www.brightnucleus.com/
* @copyright 2016 Alain Schlesser, Bright Nucleus
*/
Expand Down Expand Up @@ -67,7 +67,13 @@ public static function update(Event $event)
$io->write('Removing CSV file...', true);
self::removeFile($dbFilename . '.csv');

$io->write('The country codes database has been updated.', true);
$io->write(
sprintf(
'The country codes database has been updated (%1$s).',
$dbFilename . '.php'
),
true
);
}

/**
Expand Down

0 comments on commit 17b162f

Please sign in to comment.