mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-07 22:35:36 +00:00
Add python3 prefix back to changelog README.md
This commit is contained in:
parent
d5d7a9ec4d
commit
2617862b1a
2 changed files with 4 additions and 4 deletions
changelog
|
@ -22,7 +22,7 @@ python3 -m pip install -r requirements.txt
|
|||
|
||||
### Add a new entry
|
||||
```shell
|
||||
./src/changelog.py add
|
||||
python3 ./src/changelog.py add
|
||||
```
|
||||
The command will ask you for the required information to create a new changelog entry.
|
||||
|
||||
|
@ -33,7 +33,7 @@ your workflow.
|
|||
|
||||
### Make a release
|
||||
```shell
|
||||
./src/changelog.py release <name-of-the-release>
|
||||
python3 ./src/changelog.py release <name-of-the-release>
|
||||
```
|
||||
|
||||
The command will do the following:
|
||||
|
@ -45,7 +45,7 @@ The command will do the following:
|
|||
## Additional commands
|
||||
### Purge
|
||||
```shell
|
||||
./src/changelog.py purge
|
||||
python3 ./src/changelog.py purge
|
||||
```
|
||||
|
||||
This command will delete:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/env python3
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import os
|
||||
import shutil
|
||||
|
|
Loading…
Add table
Reference in a new issue