aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers/updateController.php
diff options
context:
space:
mode:
authorGravatar Alexis Degrugillier <aledeg@users.noreply.github.com> 2019-04-03 17:38:17 +0200
committerGravatar GitHub <noreply@github.com> 2019-04-03 17:38:17 +0200
commit0eea6d5ab5098d5203877a5beacfac2e1311c5f8 (patch)
tree77e0d0237da94c47d3ddb0954d263b19d4e3d915 /app/Controllers/updateController.php
parent461a88657cccb7c4d1a89194397a7dd5f4032c6d (diff)
Revert "Update git command (#2331)"
This reverts commit afd1a8784c2a83426388b39d32703fb82c223f76.
Diffstat (limited to 'app/Controllers/updateController.php')
-rw-r--r--app/Controllers/updateController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/updateController.php b/app/Controllers/updateController.php
index 46157960d..2be644c85 100644
--- a/app/Controllers/updateController.php
+++ b/app/Controllers/updateController.php
@@ -32,7 +32,7 @@ class FreshRSS_update_Controller extends Minz_ActionController {
$output = array();
$return = 1;
try {
- exec('git clean -d --force', $output, $return);
+ exec('git clean -f -d -f', $output, $return);
if ($return == 0) {
exec('git pull --ff-only', $output, $return);
} else {