Skip to content

Commit

Permalink
Fix more paths
Browse files Browse the repository at this point in the history
  • Loading branch information
thebeanogamer authored Jan 18, 2020
1 parent 1e8c461 commit 7ac6abe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions azure-pipelines/release-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- task: PowerShell@2
inputs:
targetType: 'inline'
script: '~/.poetry/bin/poetry publish --build -u $(PyPi.Username) -p $(PyPi.Password)'
script: '~/.poetry/bin/poetry.bat publish --build -u $(PyPi.Username) -p $(PyPi.Password)'
displayName: Publish pip package with Poetry
env:
PyPi.Username: $(PyPi.Username)
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
- task: PowerShell@2
inputs:
targetType: 'inline'
script: '~/.poetry/bin/poetry run pyinstaller --onefile hstsparser.py'
script: '~/.poetry/bin/poetry.bat run pyinstaller --onefile hstsparser.py'
displayName: 'Create Executable'

- task: GitHubRelease@1
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ pywin32-ctypes = "^0.2.0"
pefile = "^2019.4.18"
flake8-formatter-junit-xml = "^0.0.6"

[tool.poetry.scripts]
hstsparser = "hstsparser:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"

[tool.poetry.scripts]
hstsparser = "hstsparser:main"

0 comments on commit 7ac6abe

Please sign in to comment.