Skip to content

Releases: blurstudio/hab

Restore setuptools-scm requirement

15 Aug 22:15
Compare
Choose a tag to compare
[pre-commit.ci] pre-commit autoupdate

updates:
- https://gitlab.com/pycqa/flake8 → https://github.com/PyCQA/flake8
- [github.com/PyCQA/flake8: 3.9.2 → 5.0.4](https://github.com/PyCQA/flake8/compare/3.9.2...5.0.4)

Fix hab launch in cmd for complex aliases

15 Aug 19:21
Compare
Choose a tag to compare

In command prompt, an alias defined as a list results in "The filename, directory name, or volume label syntax is incorrect.". Due to not being able to call doskey in a batch file limitation we need to properly escape the full alias command instead of just calling the alias name.

Add environment variable formatting

12 Aug 05:27
Compare
Choose a tag to compare

Fix setuptools-scm pip requirements.

  • {ANYTHING!e}: !e is a special conversion flag for Environment variables. This will
    be replaced with the correct shell environment variable. For bash it becomes $ANYTHING,
    in power shell $env:ANYTHING, and in command prompt %ANYTHING%. ANYTHING is the name
    of the environment variable.
  • {;}: This is replaced with the path separator for the shell. Ie : for bash, and ;
    on windows(including bash).

Add environment variable formatting

12 Aug 03:10
1b1b57d
Compare
Choose a tag to compare
  • {ANYTHING!e}: !e is a special conversion flag for Environment variables. This will
    be replaced with the correct shell environment variable. For bash it becomes $ANYTHING,
    in power shell $env:ANYTHING, and in command prompt %ANYTHING%. ANYTHING is the name
    of the environment variable.
  • {;}: This is replaced with the path separator for the shell. Ie : for bash, and ;
    on windows(including bash).