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
Add cache and install_dir to .bindown.yaml if they are set to non-default.
Add cache and install_dir directories to .gitignore.
Need to add an --install-dir param to init. It can use the global --cache option param for setting the cache dir. It
also needs a --no-gitignore param to prevent it.
The .gitignore file should be in the same directory as .bindown.yaml even if it is in a subdirectory of the git
repo.
The algorithm for .gitignore should be something like:
If git isn't available in PATH, abort
If .bindown.yaml isn't being created inside a git repo, abort
For each directory of cache and install_dir
Use git check-ignore to see if the directory is already ignored. If so continue to next directory.
Append the directory to .gitignore in the same directory as .bindown.yaml
The text was updated successfully, but these errors were encountered:
Improve
bindown init
to:Add
cache
andinstall_dir
to.bindown.yaml
if they are set to non-default.Add
cache
andinstall_dir
directories to.gitignore
.Need to add an
--install-dir
param to init. It can use the global--cache
option param for setting the cache dir. Italso needs a
--no-gitignore
param to prevent it.The
.gitignore
file should be in the same directory as.bindown.yaml
even if it is in a subdirectory of the gitrepo.
The algorithm for
.gitignore
should be something like:git
isn't available in PATH, abort.bindown.yaml
isn't being created inside a git repo, abortcache
andinstall_dir
git check-ignore
to see if the directory is already ignored. If so continue to next directory..gitignore
in the same directory as.bindown.yaml
The text was updated successfully, but these errors were encountered: