[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#754463: RFS: pdf2htmlex/0.11+ds-1



You added:

export HOME=`mktemp --dry-run`

This sets HOME literally to `mktemp --dry-run`. I think you wanted to say:

export HOME=$(shell mktemp --dry-run)

But there's a good reason --dry-run is described as “unsafe” in the mktemp manpage. So how about something like this instead:

export HOME=$(CURDIR)/nonexistent

?

--
Jakub Wilk


Reply to: