Skip to content

Commit ab2aff7

Browse files
committed
fix(Make): eliminate discrepancy between OSX and Linux builds
Turns out that OSX `cp -R` does something subtly different from Linux `cp -R`, and it's based on the presence of the trailing slash in the source of the copy. Happily, it looks like we can fix it by just getting rid of that slash. Therefore this commit.
1 parent 63efc81 commit ab2aff7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@ docs-kotlin-deps := $(JVM_LIB) $(jvm-deps) $(KOTLIN_SOURCES)
732732
$(STAMPS)/docs-kotlin: $(docs-kotlin-deps)
733733
cd crypto-ffi/bindings && ./gradlew jvm:dokkaGeneratePublicationHtml
734734
mkdir -p target/kotlin/doc
735-
cp -R crypto-ffi/bindings/jvm/build/dokka/html/ target/kotlin/doc
735+
cp -R crypto-ffi/bindings/jvm/build/dokka/html target/kotlin/doc
736736
$(TOUCH_STAMP)
737737

738738
.PHONY: docs-kotlin

0 commit comments

Comments
 (0)