Skip to content

Commit

Permalink
Release
Browse files Browse the repository at this point in the history
  • Loading branch information
enciyo committed Jun 10, 2024
1 parent e3b6717 commit 85a8d25
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion che.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version=1.0.16
version=1.0.17
python=3.11
2 changes: 1 addition & 1 deletion che/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def start(ctx, port, debug, force_kill, path):
config["debug"] = debug
config["project_path"] = os.path.abspath(path) if path else os.getcwd()
script_path = os.path.join(os.path.dirname(__file__), "binding.py")
args = ["-p", f"{port}", "-s", script_path]
args = ["-p", f"{port}", "-s", script_path, "--set", "ssl_insecure=true"]

if force_kill:
ctx.invoke(stop)
Expand Down
1 change: 1 addition & 0 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ git commit -m "Release"
git push origin main
# Remove all tags from the repository
git fetch
# Delete all tags
git tag -l | xargs git tag -d
# Create tag read 'version' from che.properties file
version=$(grep "version" che.properties | cut -d'=' -f2)
Expand Down

0 comments on commit 85a8d25

Please sign in to comment.