populate check: mkdir's verbose output to stderr

This commit is contained in:
tv 2018-11-20 00:52:29 +01:00
parent ce37b2a9c2
commit 4ce5dae7bc
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ let
sentinelFile = "${target.path}/.populate";
in shell' target /* sh */ ''
${optionalString force /* sh */ ''
mkdir -vp ${quote (dirOf sentinelFile)}
mkdir -vp ${quote (dirOf sentinelFile)} >&2
touch ${quote sentinelFile}
''}
if ! test -f ${quote sentinelFile}; then