Skip to content
This repository has been archived by the owner on Dec 16, 2023. It is now read-only.

Commit

Permalink
Fixing Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
funkjedi committed Oct 21, 2016
1 parent f50f010 commit 74a0c67
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,10 @@ sync:
@rm -rf $(WORKING_DIR)
@svn co $(REPO_URL) $(WORKING_DIR)
@echo "Copying files to trunk"
@git ls-tree -r --name-only HEAD | xargs -t -I file rsync -R --exclude 'Makefile' file $(WORKING_DIR)/trunk/
@cd $(WORKING_DIR)
@svn add trunk/*
@svn status
@svn commit -m "Syncing with Github"
@git ls-tree -r --name-only HEAD | xargs -t -I filename rsync -R --exclude 'Makefile' filename $(WORKING_DIR)/trunk/
@cd $(WORKING_DIR); svn add trunk/* --force
@cd $(WORKING_DIR); svn status
@cd $(WORKING_DIR); svn commit -m "Syncing with Github"
@rm -rf $(WORKING_DIR)

release:
Expand Down

0 comments on commit 74a0c67

Please sign in to comment.