forked from brightnucleus/country-codes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Show path to data in Composer output.
- Loading branch information
1 parent
02d7a84
commit 17b162f
Showing
1 changed file
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
*/ | ||
|
@@ -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 | ||
); | ||
} | ||
|
||
/** | ||
|