From 3ad8d52a84fe3ac1816f6853139163f784208745 Mon Sep 17 00:00:00 2001 From: Ollie Ford Date: Fri, 30 Sep 2016 20:32:40 +0100 Subject: [PATCH] Add sudo rule for Aura When installing from Arch User Repository without root: aura >>= You have to use `sudo` for that. This commit adds the slightly more general, but unambiguous, "use `sudo`". This commit closes #543. --- thefuck/rules/sudo.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/thefuck/rules/sudo.py b/thefuck/rules/sudo.py index fd745661..91e5f4bb 100644 --- a/thefuck/rules/sudo.py +++ b/thefuck/rules/sudo.py @@ -19,7 +19,8 @@ patterns = ['permission denied', 'you don\'t have access to the history db.', 'authentication is required', 'edspermissionerror', - 'you don\'t have write permissions'] + 'you don\'t have write permissions', + 'use `sudo`'] def match(command):