Skip to content

Commit 2d83482

Browse files
author
Christophe Dumez
committed
Fix "make dist" command now that we use GIT instead of SVN
1 parent 7a7016b commit 2d83482

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

qbittorrent.pro

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ include(version.pri)
66

77
# Dist
88
dist.commands += rm -fR ../$${PROJECT_NAME}-$${PROJECT_VERSION}/ &&
9-
dist.commands += svn export . ../$${PROJECT_NAME}-$${PROJECT_VERSION} &&
9+
dist.commands += git clone . ../$${PROJECT_NAME}-$${PROJECT_VERSION} &&
10+
dist.commands += rm -fR $${PROJECT_NAME}-$${PROJECT_VERSION}/.git &&
11+
dist.commands += rm -f $${PROJECT_NAME}-$${PROJECT_VERSION}/.gitignore &&
1012
dist.commands += tar zcpvf ../$${PROJECT_NAME}-$${PROJECT_VERSION}.tar.gz ../$${PROJECT_NAME}-$${PROJECT_VERSION} &&
1113
dist.commands += rm -fR ../$${PROJECT_NAME}-$${PROJECT_VERSION}
1214

0 commit comments

Comments
 (0)