summaryrefslogtreecommitdiffstats
path: root/Makefile.hush
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.hush')
-rw-r--r--Makefile.hush3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.hush b/Makefile.hush
index 175face..dcb3946 100644
--- a/Makefile.hush
+++ b/Makefile.hush
@@ -51,4 +51,5 @@ wunderground :
pass show websites/wunderground.com/wunderground@tozt.net > $@
mpdscribble/mpdscribble.conf : mpdscribble/mpdscribble.conf.tmpl
- perl -E'while (<STDIN>) { if (/^password =/) { say "password = $$ARGV[0]" } else { print } }' "$$(pass show websites/last.fm/doyster)" < $< > $@
+ pass="$$(pass show websites/last.fm/doyster)" &&\
+ perl -E'while (<STDIN>) { if (/^password =/) { say "password = $$ARGV[0]" } else { print } }' "$$pass" < $< > $@