mirror of https://github.com/hak5/openwrt-owl.git
SVN checkouts should be made non-interactive, so that https repositories with auto-signed repositories can be checked out without user interaction
SVN-Revision: 11785owl
parent
d8c79faf41
commit
ef437f5e67
|
@ -67,7 +67,7 @@ define DownloadMethod/svn
|
||||||
cd $(TMP_DIR)/dl && \
|
cd $(TMP_DIR)/dl && \
|
||||||
rm -rf $(SUBDIR) && \
|
rm -rf $(SUBDIR) && \
|
||||||
[ \! -d $(SUBDIR) ] && \
|
[ \! -d $(SUBDIR) ] && \
|
||||||
svn co -r$(VERSION) $(URL) $(SUBDIR) && \
|
svn co --non-interactive -r$(VERSION) $(URL) $(SUBDIR) && \
|
||||||
find $(SUBDIR) -name .svn | xargs rm -rf && \
|
find $(SUBDIR) -name .svn | xargs rm -rf && \
|
||||||
echo "Packing checkout..." && \
|
echo "Packing checkout..." && \
|
||||||
$(call dl_pack,$(TMP_DIR)/dl/$(FILE),$(SUBDIR)) && \
|
$(call dl_pack,$(TMP_DIR)/dl/$(FILE),$(SUBDIR)) && \
|
||||||
|
|
Loading…
Reference in New Issue