Skip to content

Commit 60d986e

Browse files
Don't use asdf in the bump-version script
1 parent 0889d54 commit 60d986e

2 files changed

Lines changed: 2 additions & 15 deletions

File tree

examples/room_manager/room_service.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ def get_peer_access(
5959
return peer_access
6060

6161
def handle_notification(self, notification: betterproto.Message):
62+
print(f"Received notification {notification}")
6263
match notification:
6364
case PeerCrashed() | PeerDeleted():
6465
self.__remove_peer(notification.peer_id)

release-automation/bump-version.sh

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,28 +12,14 @@ fi
1212
BRANCH_NAME="release-$VERSION"
1313
git checkout -b "$BRANCH_NAME"
1414

15-
echo "Installing asdf dependencies..."
16-
# add plugins from .tool-versions
17-
while read -r line; do
18-
PLUGIN_NAME=$(echo "$line" | awk '{print $1}')
19-
if ! asdf plugin list | grep -q "^$PLUGIN_NAME$"; then
20-
echo "Adding asdf plugin: $PLUGIN_NAME"
21-
asdf plugin add "$PLUGIN_NAME"
22-
else
23-
echo "asdf plugin $PLUGIN_NAME already added"
24-
fi
25-
done < .tool-versions
26-
27-
asdf install
28-
2915
uv version "$VERSION"
3016
uv run ./compile_proto.sh
3117

3218
# Update OpenAPI client
3319
curl -H "Authorization: token $GH_TOKEN" \
3420
-H "Accept: application/vnd.github.v3.raw" \
3521
-L "https://raw.githubusercontent.com/fishjam-cloud/fishjam/main/openapi.yaml" \
36-
-o openapi.yaml
22+
-o openapi.yaml
3723

3824
uv run update_client ./openapi.yaml
3925
rm openapi.yaml

0 commit comments

Comments
 (0)