Closed stephenjamieson closed 5 years ago
./duplicati/*:
should probably be ./duplicati/**/*
*
covers only the files inside the folder, not subdirs and its files...
Ah, so since there are additional subdirectories under there, sounds like I'll need multiple lines
./duplicati/**/**/**
./duplicati/**/**/**/**
etc?
not really, just **/*
if you did */*
, then yes, you would have to know how many levels to glob and do something like */*/*/*/*/*
...
btw you can test it locally with ls ./duplicati/**/*
vs ls ./duplicati/*/*
I actually did have ./duplicati/**/
, but I thought it didn't work, perhaps I did something else wrong at the time. Anyways, thanks for the pointers.
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
I am attempting to package duplicati as a headless package so I don't have to mess with configs every time. Thought I'd give nfpm a whirl. It seems the
files
parameter doesn't include directories under the glob?in duplicati dir:
actually installed:
Shouldn't the glob cover the entire directory and all subdirectories?