From a0eeca682013a8ed357502f209eb47de7c5b1756 Mon Sep 17 00:00:00 2001 From: Nick Charlton Date: Thu, 2 Jul 2020 15:19:49 +0100 Subject: [PATCH] Fix local development by keeping tmp/pids around (#1695) If you clone the project and try to start the app, it'll fail with: ``` No such file or directory @ rb_sysopen - /Users/nickcharlton/projects/administrate/tmp/pids/server.pid (Errno::ENOENT) ``` Rails doesn't seem to be able to create this path (perhaps because it's really running `spec/example_app`?) so let's just make sure it's there already. --- tmp/pids/.keep | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 tmp/pids/.keep diff --git a/tmp/pids/.keep b/tmp/pids/.keep new file mode 100644 index 0000000000..e69de29bb2