From e5ad2e44fb7b11b5719e6b04a9684fce5c9b09d5 Mon Sep 17 00:00:00 2001 From: Elijah DeLee Date: Thu, 20 Dec 2018 15:05:01 -0500 Subject: [PATCH] swap file order so diff of schema makes more sense This way we will get +'s next to new content :) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d6ed105cf8..d8fc9bdb02 100644 --- a/Makefile +++ b/Makefile @@ -574,7 +574,7 @@ docker-compose-detect-schema-change: $(MAKE) docker-compose-genschema curl https://s3.amazonaws.com/awx-public-ci-files/schema.json -o reference-schema.json # Ignore differences in whitespace with -b - diff -u -b schema.json reference-schema.json + diff -u -b reference-schema.json schema.json docker-compose-clean: cd tools && CURRENT_UID=$(shell id -u) TAG=$(COMPOSE_TAG) DEV_DOCKER_TAG_BASE=$(DEV_DOCKER_TAG_BASE) docker-compose run --rm -w /awx_devel --service-ports awx make clean