branch: externals/system-packages
commit 3af0d4d511cb85a08c7517fc30d21e991de94c72
Author: Alex Branham <[email protected]>
Commit: Alex Branham <[email protected]>
system-packages--run-command: Inhibit read-only text properties
---
system-packages.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/system-packages.el b/system-packages.el
index 1d08af1..4464d35 100644
--- a/system-packages.el
+++ b/system-packages.el
@@ -337,7 +337,8 @@ and ARGS."
(let ((command (system-packages-get-command action pack args))
(default-directory (if system-packages-use-sudo
"/sudo::"
- default-directory)))
+ default-directory))
+ (inhibit-read-only t))
(async-shell-command command "*system-packages*")))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;