소스 검색

Revert "add binaries from _build dir to nightly packages for plugin development"

This reverts commit a98f481158bbf0d7299d02c9c3f9c683c2d3a5e1.
Alexander Kuzmenko 7 년 전
부모
커밋
f9f79bd6c6
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      Makefile
  2. 1 1
      Makefile.win

+ 1 - 1
Makefile

@@ -212,7 +212,7 @@ package_unix:
 	mkdir -p $(PACKAGE_OUT_DIR)
 	rm -rf $(PACKAGE_FILE_NAME) $(PACKAGE_FILE_NAME).tar.gz
 	#delete all content which was generated in _build dir except interfaces
-	# find _build/ -type f ! -name '*.cmi' -delete
+	find _build/ -type f ! -name '*.cmi' -delete
 	#add ocaml version to the _build dir
 	ocaml -version > _build/ocaml.version
 	# Copy the package contents to $(PACKAGE_FILE_NAME)

+ 1 - 1
Makefile.win

@@ -41,7 +41,7 @@ package_win:
 	mkdir -p out
 	rm -rf $(PACKAGE_FILE_NAME) $(PACKAGE_FILE_NAME).zip temp.zip
 	#delete all content which was generated in _build dir except interfaces
-	#find _build/ -type f ! -name '*.cmi' -delete
+	find _build/ -type f ! -name '*.cmi' -delete
 	#add ocaml version to the _build dir
 	ocaml -version > _build/ocaml.version
 	# Copy the package contents to $(PACKAGE_FILE_NAME)