mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-23 23:20:57 +01:00
tools/inc/lib/jsgettext/: apply fixes from bugtracker
This commit is contained in:
parent
12d1636b40
commit
79b6428718
@ -10,7 +10,7 @@
|
||||
'-k' => '_'
|
||||
);
|
||||
$len = count($args);
|
||||
$i = 0;
|
||||
$i = 1;
|
||||
while ($i < $len) {
|
||||
if (preg_match('#^-[a-z]$#i', $args[$i])) {
|
||||
$options[$args[$i]] = isset($args[$i+1]) ? trim($args[$i+1]) : true;
|
||||
@ -26,7 +26,11 @@
|
||||
|
||||
$options = buildOptions($argv);
|
||||
|
||||
if (!file_exists($options['-o']) || !is_writable($options['-o'])) {
|
||||
if (!file_exists($options['-o'])) {
|
||||
touch($options['-o']);
|
||||
}
|
||||
|
||||
if (!is_writable($options['-o'])) {
|
||||
die("Invalid output file name. Make sure it exists and is writable.");
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user