Skip to content
This repository was archived by the owner on Jan 13, 2019. It is now read-only.

Commit 1a27086

Browse files
committed
Fix: not empty instead of empty
1 parent 9280f97 commit 1a27086

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Plugin/Deployer.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,15 +148,15 @@ protected function getOptions($config)
148148
$options[] = 'deploy';
149149
}
150150

151-
if (empty($config['stage'])) {
151+
if (!empty($config['stage'])) {
152152
$options[] = $config['stage'];
153153
}
154154

155-
if (empty($config['verbosity'])) {
155+
if (!empty($config['verbosity'])) {
156156
$options[] = $this->getVerbosityOption($config['verbosity']);
157157
}
158158

159-
if (empty($config['file'])) {
159+
if (!empty($config['file'])) {
160160
$options[] = '--file=' . $config['file'];
161161
}
162162

0 commit comments

Comments
 (0)