Skip to content

Commit

Permalink
Force a specific shell to be used (ref #59)
Browse files Browse the repository at this point in the history
This allows us to use options to echo that in turn allow it to interpret
the tab escape sequence.  Some systems would be using other shells by default,
so this should make the environment more consistant.
  • Loading branch information
hamishcoleman committed Feb 1, 2018
1 parent ceb0fe1 commit 95b63fa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ all: list_laptops

.PHONY: all

SHELL = /bin/bash

QEMU_OPTIONS ?= -enable-kvm

GITVERSION = $(shell git describe --dirty --abbrev=6 ) ($(shell date +%Y%m%d))
Expand All @@ -22,7 +24,7 @@ list_laptops:
$(info The following make targets are the supported usb images:)
$(info )
@for i in $(LIST_PATCHED); do \
echo "$$i.img\t- `scripts/describe $$i.iso`"; \
echo -e "$$i.img\t- `scripts/describe $$i.iso`"; \
done
@echo

Expand Down

0 comments on commit 95b63fa

Please sign in to comment.