Skip to content

Commit 9be028a

Browse files
committed
update default commands to: ['git branch', 'git pull && git log -1']
1 parent c940f6c commit 9be028a

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

DeployApplication.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,7 @@ public function execute(array $customCommands = [])
7676
return;
7777
}
7878
if (empty($customCommands)) {
79-
$this->exec([
80-
'git branch',
81-
'git pull',
82-
]);
79+
$this->exec(['git branch', 'git pull && git log -1']);
8380
} else {
8481
$this->exec($customCommands);
8582
}

0 commit comments

Comments
 (0)