Skip to content

Commit 091fe32

Browse files
committed
wip
1 parent c932a47 commit 091fe32

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Generator.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,10 +155,10 @@ public function createSymlinks()
155155
$dest = $this->config['destination'].'/'.$dest;
156156

157157
if ($this->files->exists($dest)) {
158-
Partyline::outputComponents()->warn("Symlink not created. $dest already exists.");
158+
Partyline::outputComponents()->twoColumnDetail("$source symlinked to $dest", '<fg=blue;options=bold>SKIPPED. SYMLINK ALREADY EXISTS</>');
159159
} else {
160160
$this->files->link($source, $dest);
161-
Partyline::outputComponents()->success("$source symlinked to $dest");
161+
Partyline::outputComponents()->twoColumnDetail("$source symlinked to $dest", '<fg=green;options=bold>SUCCESS</>');
162162
}
163163
}
164164

@@ -176,7 +176,7 @@ public function copyFiles()
176176
$this->files->copyDirectory($source, $dest);
177177
}
178178

179-
Partyline::outputComponents()->success("$source copied to $dest");
179+
Partyline::outputComponents()->twoColumnDetail("$source copied to $dest", '<fg=green;options=bold>SUCCESS</>');
180180
}
181181

182182
return $this;

0 commit comments

Comments
 (0)