Removed use of sudo in the Makefile.
This commit is contained in:
parent
d853a58f5f
commit
6aedbf4743
1 changed files with 3 additions and 3 deletions
|
|
@ -482,11 +482,11 @@ sloc:
|
||||||
STAGING = /tmp/ledger
|
STAGING = /tmp/ledger
|
||||||
|
|
||||||
copy-sources:
|
copy-sources:
|
||||||
-mkdir $(STAGING)
|
-mkdir -p $(STAGING)
|
||||||
sudo rsync -av --delete --exclude=/.libs/ --exclude=/.deps/ \
|
rsync -av --delete --exclude=/.libs/ --exclude=/.deps/ \
|
||||||
--exclude=/plan/ --exclude=/2.6*/ --exclude=/archive/ \
|
--exclude=/plan/ --exclude=/2.6*/ --exclude=/archive/ \
|
||||||
$(srcdir)/ $(STAGING)/
|
$(srcdir)/ $(STAGING)/
|
||||||
(cd $(STAGING); sudo git clean -x -d -f)
|
(cd $(STAGING); git clean -x -d -f)
|
||||||
|
|
||||||
release: copy-sources
|
release: copy-sources
|
||||||
(cd $(STAGING); \
|
(cd $(STAGING); \
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue