You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So far, we have had to copy and paste the GetPathRelativeTo function from terragrunt repo to the patcher/util repo package. We should instead have this command available here so we avoid duplication.
The text was updated successfully, but these errors were encountered:
However, it seems that a bug fix has been implemented in the function in Terragrunt, and hasn't been ported here.
Therefore the right course of action is:
Port the above bug fix from Terragrunt to go-commons
Remove the definition of GetPathRelativeTo from Terragrunt (and any other repos that currently define their own versions of it) and use the function from go-commons instead
Another bug in GetPathRelativeTo() was discovered and I just posted a fix in #78. After this is merged, I'll release another version of go-commons and ensure that all the repos that start to make use of GetPathRelativeTo() use this latest version.
Another bug in GetPathRelativeTo() was discovered and I just posted a fix in #78. After this is merged, I'll release another version of go-commons and ensure that all the repos that start to make use of GetPathRelativeTo() use this latest version.
So far, we have had to copy and paste the
GetPathRelativeTo
function fromterragrunt
repo to thepatcher/util
repo package. We should instead have this command available here so we avoid duplication.The text was updated successfully, but these errors were encountered: