Merge pull request #22 from TriPSs/master

fix: Fixed git being called incorrectly
releases/v3
Tycho Bokdam 2020-04-29 10:09:05 +02:00 committed by GitHub
commit 5c2e451405
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ module.exports = new (class Git {
* @return {Promise<>} * @return {Promise<>}
*/ */
pull = () => ( pull = () => (
this.exec(`git pull --unshallow`) this.exec(`pull --unshallow`)
) )
/** /**