-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Added source-dist makefile target #5266
Conversation
oops.. It seems like I did not include tar.bz files |
This approach looks generally better than mine; I thought about using |
I'll test on OSX in the next day or so. |
Now it does not download anything when try |
|
||
# Create tarball | ||
tar -cz -T source-dist.tmp -f julia-$(JULIA_VERSION)_$(JULIA_COMMIT).tar.gz | ||
rm source-dist.tmp |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sed -i".bak"
creates source-dist.tmp.bak
which you need to clean up as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I noticed, but wanted to push the other updates before going to sleep.
For some reason,
|
Do you think the naming of the tarball is fine? Users who doesn't use tab completion (scripts?) will have problem typing 10 characters of the sha. I would also like to have the tarball extract to a folder, but have not figured out how to do that when giving a file list with |
I think it's pretty standard to have the tarball not extract to a subdirectory, especially when dealing with source packages. Similarly, the name is fine I think. I think the biggest user of |
The problem is that |
I would want to update |
Hmmm, it seems that you need to special-case in the |
The good news is that with those files included, the generated |
That PR is going to need a rebase anyway, now that we've messed around with |
Good point, the two PRs depend on each other anyway, so I might submit a new PR that does both. |
Obsoleted by #5528 |
This is an alternative to #5264 @staticfloat
This approach has less hardcoded paths and does not make a copy before compressing.