mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 14:32:28 +03:00
Fix makebuildserver after rename, tidy gitignores
This commit is contained in:
parent
e7a21980f5
commit
a33fddce07
5 changed files with 16 additions and 16 deletions
12
.gitignore
vendored
12
.gitignore
vendored
|
@ -6,15 +6,3 @@
|
||||||
*.box
|
*.box
|
||||||
# files generated by build
|
# files generated by build
|
||||||
FDroidServer.egg-info/
|
FDroidServer.egg-info/
|
||||||
# generated docs files
|
|
||||||
docs/fdroid.aux
|
|
||||||
docs/fdroid.cp
|
|
||||||
docs/fdroid.cps
|
|
||||||
docs/fdroid.fn
|
|
||||||
docs/fdroid.info
|
|
||||||
docs/fdroid.ky
|
|
||||||
docs/fdroid.log
|
|
||||||
docs/fdroid.pg
|
|
||||||
docs/fdroid.toc
|
|
||||||
docs/fdroid.tp
|
|
||||||
docs/fdroid.vr
|
|
||||||
|
|
14
docs/.gitignore
vendored
14
docs/.gitignore
vendored
|
@ -1 +1,13 @@
|
||||||
manual/
|
/manual/
|
||||||
|
# generated docs files
|
||||||
|
/fdroid.aux
|
||||||
|
/fdroid.cp
|
||||||
|
/fdroid.cps
|
||||||
|
/fdroid.fn
|
||||||
|
/fdroid.info
|
||||||
|
/fdroid.ky
|
||||||
|
/fdroid.log
|
||||||
|
/fdroid.pg
|
||||||
|
/fdroid.toc
|
||||||
|
/fdroid.tp
|
||||||
|
/fdroid.vr
|
||||||
|
|
|
@ -1408,7 +1408,7 @@ proxy definition, both of which may need customising for your environment.
|
||||||
You can then go to the @code{fdroidserver} directory and run this:
|
You can then go to the @code{fdroidserver} directory and run this:
|
||||||
|
|
||||||
@example
|
@example
|
||||||
./makebuildserver.py
|
./makebuildserver
|
||||||
@end example
|
@end example
|
||||||
|
|
||||||
This will take a long time, and use a lot of bandwidth - most of it spent
|
This will take a long time, and use a lot of bandwidth - most of it spent
|
||||||
|
|
|
@ -44,7 +44,7 @@ options, args = parser.parse_args()
|
||||||
config = {}
|
config = {}
|
||||||
execfile('makebs.config.py', config)
|
execfile('makebs.config.py', config)
|
||||||
|
|
||||||
if not os.path.exists('makebuildserver.py') or not os.path.exists(serverdir):
|
if not os.path.exists('makebuildserver') or not os.path.exists(serverdir):
|
||||||
print 'This must be run from the correct directory!'
|
print 'This must be run from the correct directory!'
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env python2
|
#!/usr/bin/env python2
|
||||||
|
|
||||||
# You will need to alter these before running makebuildserver.py
|
# You will need to alter these before running ./makebuildserver
|
||||||
|
|
||||||
# Name of the base box to use...
|
# Name of the base box to use...
|
||||||
basebox = "raring32"
|
basebox = "raring32"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue