Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.7.0
3.7.1
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ from urllib.parse import urljoin
from urllib.request import Request, urlopen


VERSION = "3.7.0"
VERSION = "3.7.1"
REPOSITORY = "https://raw.githubusercontent.com/kimdzhekhon/Universal-Build-Script"
RELEASE_REF = os.environ.get("UBS_INSTALL_REF", f"v{VERSION}")
BASE_URL = os.environ.get("UBS_INSTALL_BASE_URL", f"{REPOSITORY}/{RELEASE_REF}").rstrip("/") + "/"
Expand Down
6 changes: 3 additions & 3 deletions scripts/update-manifest.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# scripts/generate-update-manifest.sh로 생성합니다. 임의 편집하지 마세요.
version 3.7.0
file 84746b20a3a72f6ff85a629706e50507c1bd200907456b76dd808a2a5ca0efba VERSION
version 3.7.1
file 4e99e7eac21c2b71a97139cacca695d98c93fbd7dd26505f04f5271809ac4b94 VERSION
file 62d7189d00ccadbdeae9647a37b80db6ed9e179bfcf5b2f1d4d1c487dbc815bf build.sh
file d9672f7bb74551de59fb3d27e1cdf2a5c7c96d41f40135372552c2798a04d7c5 install.sh
file bd3cf3619dc22410f454107122d5e81cc7fad164850f546dccfaa7886436018d install.sh
file 1c4d89ae31cf4ec50c4a908d8ef913525a3410a1017644ff91949d43713e50d7 scripts/ubs.py
file df0231e3cc0e584be7ae3ade3f1c0a7f92afb2124ec8a15bdb51c76737bbe1e0 scripts/ubs_mcp.py
file 0a3b9d28fbe62bc55c073f5337954ae92ffca7482fca5d1f681dc99333363416 scripts/bootstrap-update.sh
Expand Down
6 changes: 3 additions & 3 deletions tests/test-update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ assert result["schema_version"] == 1
assert result["ok"] is True
assert result["mode"] == "check"
assert result["status"] == 0
assert result["local_version"] == "3.7.0"
assert result["remote_version"] == "3.7.0"
assert result["local_version"] == "3.7.1"
assert result["remote_version"] == "3.7.1"
assert result["changed_paths"] == []
assert result["backup_path"] is None
assert isinstance(result["output"], list)
Expand Down Expand Up @@ -196,7 +196,7 @@ fi
}

# 원격 버전이 더 낮으면 명시적 허용 없이 적용하지 않아야 한다.
sed 's/^version 3\.7\.0$/version 2.0.0/' "$REPO_DIR/scripts/update-manifest.txt" \
sed 's/^version 3\.7\.1$/version 2.0.0/' "$REPO_DIR/scripts/update-manifest.txt" \
> "$REMOTE/scripts/update-manifest.txt"
if UBS_UPDATE_BASE_URL="file://$REMOTE" UBS_UPDATE_ALLOW_FILE=true \
bash "$TARGET/build.sh" update --check >/dev/null 2>&1; then
Expand Down