summary refs log tree commit diff
path: root/trivium.el
diff options
context:
space:
mode:
Diffstat (limited to 'trivium.el')
-rw-r--r--trivium.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/trivium.el b/trivium.el
index 0cfe761..f067c6b 100644
--- a/trivium.el
+++ b/trivium.el
@@ -24,12 +24,14 @@
 (defun trivium-update-blog ()
   "Update the blog."
   (interactive)
-  (compile "cd .. ; ruby trivium.rb"))
+  (let ((process-connection-type nil))
+    (compile "cd .. ; ruby trivium.rb")))
 
 (defun trivium-upload-blog ()
   "Upload the blog."
   (interactive)
-  (compile "cd .. ; ruby trivium.rb && ./upload"))
+  (let ((process-connection-type nil))
+    (compile "cd .. ; ruby trivium.rb && ./upload")))
 
 (defun trivium-insert-link-markup ()
   "Insert a '.link'."