Peter Bittner
Peter Bittner
It's painful. The combination of `--replay` and `--no-input` is not allowed: :worried: ```console $ cookiecutter [email protected]:example/mycookiecutter.git --replay --no-input You can not use both replay and no_input or extra_context at the...
According to my analysis the culprit of this behavior is [`shutil.copytree`](https://github.com/audreyr/cookiecutter/blob/master/cookiecutter/generate.py#L314). In Python 3.3 this function also causes the following error (for a symlink `framework` to a directory): ``` python...
See also: - [gnome-shell issue #906](https://gitlab.gnome.org/GNOME/gnome-shell/issues/906)
> Running `gnome-shell-extension-installer` as root should do the trick. Oh, interesting, it does! You're [making the distinction](https://github.com/brunelli/gnome-shell-extension-installer/blob/master/gnome-shell-extension-installer#L440-L443) based on the uid, neat! :+1:
How will we keep this aligned with the Oh My Zsh project implementation? In [PR #1201](https://github.com/Bash-it/bash-it/pull/1201/files#diff-128cd8e23d4925031bbcc6361903699a6e07dc6ee6b2d486716e41572e49922bR1-R5) I tried to document a scripted approach. Would it make sense to do something...
How many approvals does a PR need? :zany_face:
Any hard feelings about this? Should I try to prepare a PR for [git.aliases.bash](https://github.com/Bash-it/bash-it/blob/master/aliases/available/git.aliases.bash)?
A bit of background on my motivation: I've only recently started working with short aliases. Before that I worked on automating the setup of development machines in a SWD agency...
I would like to try coming up with just one configuration in the long run (i.e. avoid a "run Bash-it in Oh-My-Zsh mode" feature), so it's the latter case, the...
> Bash-it currently does not have an out-of-the-box way of importing an alias file Sourcing a file seems to be possible, though it looks and feels a bit ugly. I've...