From 564a3b49218d1a944f727f55239a63d60067910a Mon Sep 17 00:00:00 2001
From: Daniel <daniel@harvey>
Date: Tue, 23 Jul 2019 17:39:27 +0200
Subject: [PATCH] MAINT: Moved `make compile` to front of makefile.

---
 makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/makefile b/makefile
index 4268f9ac..3df5dca8 100644
--- a/makefile
+++ b/makefile
@@ -23,6 +23,9 @@
 
 SHELL:=/bin/bash
 
+compile: easy-units
+	mvn compile
+
 runserver:
 	mvn exec:java@run
 
@@ -35,9 +38,6 @@ run-debug:
 run-single:
 	java -jar target/caosdb-server-0.1-SNAPSHOT-jar-with-dependencies.jar
 
-compile: easy-units
-	mvn compile
-
 # Compile into a standalone jar file
 jar: compile
 	mvn clean compile assembly:single
-- 
GitLab