Skip to content
This repository was archived by the owner on Sep 19, 2023. It is now read-only.

Commit a1db389

Browse files
committed
cleanup
1 parent 13d6a38 commit a1db389

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
.PHONY: protobuf setup format test lint autocorrect clean build release
22

33
APP="Soapbox"
4+
WEBRTC="WebRTC-M90.xcframework.zip"
5+
46

57
# Apple
68
ifeq ($(shell uname),Darwin)
@@ -15,11 +17,12 @@ endif
1517

1618
install_deps:
1719
rm -rf WebRTC.xcframework
18-
curl https://github.com/stasel/WebRTC/releases/download/90.0.0/WebRTC-M90.xcframework.zip -O -J -L
20+
curl https://github.com/stasel/WebRTC/releases/download/90.0.0/$(WEBRTC) -O -J -L
1921
unzip WebRTC-M90.xcframework.zip
22+
rm -rf $(WEBRTC)
2023

2124
setup: install_deps
22-
tuist generate -P
25+
tuist generate -P
2326

2427
clean:
2528
rm -rf .build $(APP).xcodeproj $(APP).xcworkspace Package.pins Pods

0 commit comments

Comments
 (0)