-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add workaround for when a package includes a restoration #238
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm generally curious about the use case here. Would this involve two objects in the objects folder, one is the original,one is "restored"?
Our immediate use case is for when we have to create multiple partial transfers to get all the content from an object, then need to create (somehow) a restoration file that combines the partial transfers into a restoration master. So here we want to accept a restoration file which will be used as an alternate to the usual objects files as the basis for any derivatives, then we also want to enable accepting multiple objects files. So the package would look like
|
Lovely! |
mmfunctions
Outdated
@@ -6,6 +6,7 @@ OBJECTS_FIND_EXCLUSIONS=(! -name ".*") | |||
OBJECTS_FIND_EXCLUSIONS+=(! -path "*/access/*") | |||
OBJECTS_FIND_EXCLUSIONS+=(! -path "*/service/*") | |||
OBJECTS_FIND_EXCLUSIONS+=(! -path "*/trimmed_materials/*") | |||
OBJECTS_FIND_EXCLUSIONS+=(! -path "*/restoration/*") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If this line is kept in, then it is unable to make access file from restoration because it does not recognize the input. Tested it without this line and then it worked. :)
No description provided.