Skip to content

Commit 57a75b0

Browse files
committed
Fix clean management script
1 parent 2969be0 commit 57a75b0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rdmo/core/management/commands/clean.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def handle(self, *args, **options):
2424
self.remove_path('rdmo.egg-info')
2525

2626
if options['command'] in ['all', 'git']:
27-
subprocess.call(['git', 'clean', '-dfX'], cwd='rdmo')
27+
subprocess.call(['git', 'clean', '-dfx'], cwd='rdmo')
2828

2929
if options['command'] in ['all', 'media']:
3030
self.remove_path(settings.MEDIA_ROOT)

0 commit comments

Comments
 (0)