summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile6
-rw-r--r--vendor/composer/LICENSE2
2 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index bef809347..0cb20fb5b 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,7 @@ build:
.PHONY: composer
composer:
-ifeq (, $(shell which composer))
+ifeq (, $(shell which composer 2> /dev/null))
@echo "Using composer from website"
curl -sS https://getcomposer.org/installer | php
php composer.phar install --prefer-dist
@@ -26,7 +26,11 @@ endif
.PHONY: npm
npm:
+ifeq (,$(wildcard $(CURDIR)/package.json))
cd js && $(npm) run build
+else
+ npm run build
+endif
.PHONY: clean
clean:
diff --git a/vendor/composer/LICENSE b/vendor/composer/LICENSE
index 1a2812488..c8d57af8b 100644
--- a/vendor/composer/LICENSE
+++ b/vendor/composer/LICENSE
@@ -1,5 +1,5 @@
-Copyright (c) 2016 Nils Adermann, Jordi Boggiano
+Copyright (c) 2015 Nils Adermann, Jordi Boggiano
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal