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

Make Site.copy support multiple destinations #429

Open
wants to merge 4 commits into
base: v1
Choose a base branch
from

Commits on Jun 5, 2023

  1. Configuration menu
    Copy the full SHA
    f01e0f4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8e1a830 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    29db4a3 View commit details
    Browse the repository at this point in the history
  4. fix: make Site.copy support multiple destinations

    Site.copy previously didn't support multiple destinations:
    
       site.copy("foo", "bar1")
       site.copy("foo", "bar2")
    
    Previously resulted in `foo` being only copied once to `bar2`.
    
       site.copy("static")
       site.copy("static/foo", "bar")
    
    Previously didn't copy `static/foo` to `bar`.
    
    This commit fixes both of these bugs. Fixes lumeland#428.
    not-my-profile committed Jun 5, 2023
    Configuration menu
    Copy the full SHA
    c9557c1 View commit details
    Browse the repository at this point in the history