Procházet zdrojové kódy

add binaries from _build dir to nightly packages for plugin development

Alexander Kuzmenko před 7 roky
rodič
revize
a98f481158
2 změnil soubory, kde provedl 2 přidání a 2 odebrání
  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)