mirror of
https://github.com/there4/markdown-resume.git
synced 2024-12-03 08:59:35 -05:00
Update phar with latest version and build
This adds a new dependencies check that makes sure that `mbstring` is properly installed.
This commit is contained in:
parent
7103ee343e
commit
15f28357ca
@ -24,7 +24,7 @@ at the [blog post for the project][blog].
|
||||
|
||||
## Help
|
||||
```
|
||||
Markdown Resume Generator version 2.0.1 by Craig Davis
|
||||
Markdown Resume Generator version 2.0.2 by Craig Davis
|
||||
|
||||
Usage:
|
||||
[options] command [arguments]
|
||||
|
BIN
bin/md2resume
BIN
bin/md2resume
Binary file not shown.
@ -8,7 +8,7 @@
|
||||
"html5"
|
||||
],
|
||||
"license": "MIT",
|
||||
"version": "2.0.1",
|
||||
"version": "2.0.2",
|
||||
"selfupdatepath": "://github.com/there4/markdown-resume/raw/master/bin/md2resume",
|
||||
"selfupdateversion": "://github.com/there4/markdown-resume/raw/master/version",
|
||||
"authors": [
|
||||
|
@ -68,7 +68,8 @@ class Resume extends Application
|
||||
return parent::getLongVersion().' by <comment>Craig Davis</comment>';
|
||||
}
|
||||
|
||||
public function checkDependencies() {
|
||||
public function checkDependencies()
|
||||
{
|
||||
$output = new ConsoleOutput();
|
||||
if (!extension_loaded('mbstring')) {
|
||||
$output->writeln(
|
||||
@ -76,7 +77,7 @@ class Resume extends Application
|
||||
"More help: http://www.php.net/manual/en/mbstring.installation.php\n",
|
||||
$this->outputFormat
|
||||
);
|
||||
exit(1);
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user