Terminate quoted strings
parent
3b9d6769bf
commit
78ae0a97f7
|
@ -1334,10 +1334,10 @@ EOF;
|
||||||
|
|
||||||
file_put_contents($this->workingDir.'/forks/bar/src/exclude/FooExclClass.php', '<?php class FooExclClass {};');
|
file_put_contents($this->workingDir.'/forks/bar/src/exclude/FooExclClass.php', '<?php class FooExclClass {};');
|
||||||
$target = $this->workingDir.'/forks/bar/';
|
$target = $this->workingDir.'/forks/bar/';
|
||||||
$link = $this->workingDir.'/composersrc/foo/bar/';
|
$link = $this->workingDir.'/composersrc/foo/bar';
|
||||||
$command = Platform::isWindows()
|
$command = Platform::isWindows()
|
||||||
? 'mklink /j "' . str_replace('/', '\\', $link) . '" "' . str_replace('/', '\\', $target)
|
? 'mklink /j "' . str_replace('/', '\\', $link) . '" "' . str_replace('/', '\\', $target) . '"'
|
||||||
: 'ln -s "' . $target . '" "' . $link;
|
: 'ln -s "' . $target . '" "' . $link . '"';
|
||||||
exec($command);
|
exec($command);
|
||||||
|
|
||||||
$this->generator->dump($this->config, $this->repository, $package, $this->im, 'composer', true, '_1');
|
$this->generator->dump($this->config, $this->repository, $package, $this->im, 'composer', true, '_1');
|
||||||
|
|
Loading…
Reference in New Issue