Skip to content
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

feat(import): copy folder contents #453

Merged
merged 2 commits into from
Nov 6, 2023
Merged

Commits on Nov 2, 2023

  1. feat(import): copy dir contents

      import:
        - path: folder1/
          dest: /
    
    vs
    
      import:
        - path: folder1
          dest: /
    
    The former will copy the contents of folder1/ at / and the latter will
    make and copy a /folder1 at /
    
    Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>
    rchincha committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    faa7772 View commit details
    Browse the repository at this point in the history
  2. feat(import): allow dest dir renaming during import

    import:
        - path: folder1
        dest: /folder2
    
    will cause contents of folder1 to show up as and under /folder2
    
    Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>
    rchincha committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    91ed8ea View commit details
    Browse the repository at this point in the history