Skip to content

Commit b4a9358

Browse files
authored
Fix TestApp Makefile (#7)
1 parent b05597a commit b4a9358

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Support/Carthage/project-as-submodule.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ targets:
9191
- framework: Fuzi.framework
9292
- framework: Minizip.framework
9393
- framework: SQLite.framework
94-
- framework: ZIPFoundation..framework
94+
- framework: ZIPFoundation.framework
9595
- target: R2Shared
9696
settings:
9797
PRODUCT_BUNDLE_IDENTIFIER: org.readium.readium-lcp-swift

TestApp/Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = `git describe --tags --match [0-9]* --abbrev=0 2> /dev/null`
1+
version = `git describe --tags --abbrev=0 2> /dev/null`
22
ifdef commit
33
version = $(commit)
44
endif
@@ -32,9 +32,9 @@ else
3232
@cp Integrations/SPM/project.yml .
3333
endif
3434
ifdef commit
35-
@sed -i "" -e "s>VERSION>revision: $(version)>g" project.yml
35+
@sed -i "" -e "s>VERSION>revision: $(commit)>g" project.yml
3636
else
37-
@sed -i "" -e "s>VERSION>from: $(commit)>g" project.yml
37+
@sed -i "" -e "s>VERSION>from: $(version)>g" project.yml
3838
endif
3939
xcodegen generate
4040
@echo "\nopen TestApp.xcodeproj"

0 commit comments

Comments
 (0)