diff --git a/cicd_tool/main.py b/cicd_tool/main.py index 9ebb4ef..cf6ced4 100644 --- a/cicd_tool/main.py +++ b/cicd_tool/main.py @@ -11,7 +11,7 @@ from minio import Minio from minio.error import S3Error -# cicd_tool lives inside the GitLite repo, so its parent dir is the app root. +# cicd_tool lives inside the Gitty repo, so its parent dir is the app root. PROJECT_DIR = Path(__file__).resolve().parent.parent ARTIFACT_ROOT = PROJECT_DIR / "src-tauri" / "target" / "release" / "bundle" @@ -266,9 +266,9 @@ def main(version: Optional[str] = None, app_dir: Optional[str] = None) -> None: raise ConfigurationError("ARTIFACT_BASE_URL is required") # S3/MinIO bucket names must be lowercase, so normalise regardless of how the - # S3_BUCKET variable is cased (e.g. "GitLite" -> "gitlite"). - bucket_name = (os.environ.get("S3_BUCKET") or "gitlite").lower() - bucket_prefix = (app_dir or os.environ.get("APP_DIR") or "gitlite").strip("/") + # S3_BUCKET variable is cased (e.g. "Gitty" -> "gitty"). + bucket_name = (os.environ.get("S3_BUCKET") or "gitty").lower() + bucket_prefix = (app_dir or os.environ.get("APP_DIR") or "gitty").strip("/") artifacts = _collect_artifacts() if not artifacts: @@ -329,7 +329,7 @@ def main(version: Optional[str] = None, app_dir: Optional[str] = None) -> None: if __name__ == "__main__": parser = argparse.ArgumentParser( - description="Upload GitLite release artifacts to MinIO." + description="Upload Gitty release artifacts to MinIO." ) parser.add_argument( "-v", @@ -340,7 +340,7 @@ if __name__ == "__main__": parser.add_argument( "--app-dir", default=None, - help="App directory prefix inside the bucket (defaults to gitlite).", + help="App directory prefix inside the bucket (defaults to gitty).", ) args = parser.parse_args() diff --git a/index.html b/index.html index b5d3d25..d3b3c4a 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@
-