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

Also add options when we combine buildsettings #2194

Closed
wants to merge 2 commits into from

Conversation

ryuukk
Copy link
Contributor

@ryuukk ryuukk commented Nov 27, 2021

Fixes #2193

@PetarKirov
Copy link
Member

Hi @ryuukk, thanks for the thorough investigation and the fix! Can you add a test that reproduces the issue you described and asserts that different import paths can be properly retrieved?

@ryuukk
Copy link
Contributor Author

ryuukk commented Feb 24, 2022

I didn't notice this was still open my bad!

I am not sure how to write tests for that kind of stuff..

I'll give another try whenever i got some free time

@ryuukk
Copy link
Contributor Author

ryuukk commented Jun 15, 2022

I don't think this even need a test, someone just forgot to copy every field

@rikkimax
Copy link
Contributor

Agreed, rebase and LGTM!

@ryuukk
Copy link
Contributor Author

ryuukk commented Jul 29, 2022

I don't like git, i don't know what's missing or what i should do next

If someone can pick up this PR and do the changes required that would be nice

@ryuukk
Copy link
Contributor Author

ryuukk commented Aug 4, 2022

7 months for a 1 line fix, can we do something about this one please?

@ryuukk ryuukk closed this Aug 4, 2022
@WebFreak001
Copy link
Member

WebFreak001 commented Aug 4, 2022

sorry this PR was getting lost. Could you rebase or allow contributors from dlang/dub to push to your branch? Then the tests should pass again.

If you don't want to rebase this yourself, I rebased locally, but I can't push to your branch, at the right there is a checkbox to allow others to push to your branch, so click that and tell us if you want me to do it for you.

If you want to rebase yourself you can do so like this:

# in your checked out repostiory
# first associate the remote "upstream" with dlang/dub
git remote add upstream https://github.com/dlang/dub.git
# get commits from there
git fetch upstream
# checkout your own master
git checkout master
# update with upstream master commits (should just fast-forward)
git pull upstream master
# checkout your feature branch
git checkout patch-1
# rebase (reapplies the patch commits here onto master)
git rebase master
# force push to patch-1 (as we rewrote history, we need to force, so the old actual commit is deleted from history)
git push origin patch-1 -f

@ryuukk
Copy link
Contributor Author

ryuukk commented Aug 4, 2022

@WebFreak001 thanks a lot!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Unnable to get import path from sourceLibrary packages
5 participants