We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For our migration testing and tools/fs-image.js, it's necessary to be able to pull old versions of our filer bundle out of git.
I'd like a tool that works like this:
$ tools/get-filer-version v0.0.44 Wrote filer-v0.0.44.js $ tools/get-filer-version d66114e Wrote filer-d66114e.js
This could then be used with fs-image to create a filesystem image using an older version of filer:
fs-image
$ tools/get-filer-version v0.0.44 Wrote filer-v0.0.44.js $ fs-image files/ --filer .filer-v0.44.js
The tool can basically take the argument you pass it, assume it's a SHA-like value (SHA, branch, tag) and then checkout dist/filer.js at that commit.
dist/filer.js
The text was updated successfully, but these errors were encountered:
7301024
Fixed. See https://github.com/filerjs/filer/blob/master/tools/get-filer-version.js for details on how this works.
Sorry, something went wrong.
No branches or pull requests
For our migration testing and tools/fs-image.js, it's necessary to be able to pull old versions of our filer bundle out of git.
I'd like a tool that works like this:
This could then be used with
fs-image
to create a filesystem image using an older version of filer:The tool can basically take the argument you pass it, assume it's a SHA-like value (SHA, branch, tag) and then checkout
dist/filer.js
at that commit.The text was updated successfully, but these errors were encountered: