aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGergely Nagy <algernon@users.noreply.github.com>2018-04-29 11:21:37 +0200
committerGitHub <noreply@github.com>2018-04-29 11:21:37 +0200
commitdfb3d618054f185b32c3fd6cd9833055f5903a12 (patch)
tree9e5491b33fe7eb99f283ba838c06c26b61009c52
parentMerge pull request #39 from gedankenexperimenter/f/keymaps (diff)
parentMatch wildcard usage between manual- and arduino-installed environments (diff)
downloadkeyboardio-model01-dfb3d618054f185b32c3fd6cd9833055f5903a12.tar.gz
keyboardio-model01-dfb3d618054f185b32c3fd6cd9833055f5903a12.tar.bz2
keyboardio-model01-dfb3d618054f185b32c3fd6cd9833055f5903a12.zip
Merge pull request #45 from ryansb/fix-installed-env
Match wildcard usage between manual- and arduino-installed environments
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ac11fb3..417a025 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ PACKAGE_DIR ?= $(HOME)/.arduino15
endif
-ARDUINO_INSTALLED_ENV=$(shell ls -dt $(PACKAGE_DIR)/packages/keyboardio/hardware/avr/* 2>/dev/null |head -n 1)
+ARDUINO_INSTALLED_ENV=$(shell ls -dt $(PACKAGE_DIR)/packages/keyboardio/hardware/avr 2>/dev/null |head -n 1)
MANUALLY_INSTALLED_ENV=$(shell ls -dt $(SKETCHBOOK_DIR)/hardware/keyboardio/avr 2>/dev/null |head -n 1)