[releases/8] improve exclude list in the "cook" target

This commit is contained in:
Fabio Erculiani
2012-01-13 19:39:15 +01:00
parent 47b5496cbe
commit 37aeb29fa4
2 changed files with 8 additions and 6 deletions
+4 -3
View File
@@ -14,13 +14,14 @@ scripts:
cook:
tar -cJf $(TARBALL_NAME) \
../$(DIR_NAME) --exclude Makefile \
--exclude $(TARBALL_NAME) \
--exclude .gitignore
--exclude .gitignore \
--exclude *.tar.xz \
--exclude *.sh
clean:
rm -f $(TARBALL_NAME)
push:
push: all
ssh -p $(PUSH_PORT) $(PUSH_USER)@$(PUSH_SERVER) \
mkdir -p $(PKG_PUSH_DIR)
scp -P $(PUSH_PORT) $(TARBALL_NAME) \
+4 -3
View File
@@ -15,13 +15,14 @@ scripts:
cook:
tar -cJf $(TARBALL_NAME) \
../$(DIR_NAME) --exclude Makefile \
--exclude $(TARBALL_NAME) \
--exclude .gitignore
--exclude .gitignore \
--exclude *.tar.xz \
--exclude *.sh
clean:
rm -f $(TARBALL_NAME)
push:
push: all
ssh -p $(PUSH_PORT) $(PUSH_USER)@$(PUSH_SERVER) \
mkdir -p $(PKG_PUSH_DIR)
scp -P $(PUSH_PORT) $(TARBALL_NAME) \