Skip to content

Commit

Permalink
Fixed restoration of Mission Portal application to packaged content w…
Browse files Browse the repository at this point in the history
…hen modified

Prior to this change if Mission Portal application code was modified it would
not be returned to the packaged state because the deployed code would have a
newer timestamp than the packaged source. This change switches to using binary
comparison of Mission Portal to it's packaged source to determine if the
deployed application should be reverted.

Ticket: ENT-10962
Changelog: Title
  • Loading branch information
nickanderson committed Dec 15, 2023
1 parent ef7c8fb commit dd91713
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cfe_internal/enterprise/CFE_knowledge.cf
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ bundle agent cfe_internal_setup_knowledge
"$(cfe_internal_hub_vars.docroot)"
comment => "Copy the basic knowledge base configuration from the installation to doc root",
handle => "cfe_internal_setup_knowledge_files_doc_root_1",
copy_from => no_backup_cp("$(sys.workdir)/share/GUI"),
copy_from => no_backup_cp_compare("$(sys.workdir)/share/GUI", "binary"),
depth_search => recurse("inf");

any::
Expand Down

0 comments on commit dd91713

Please sign in to comment.