Compare commits

..

1 Commits

Author SHA1 Message Date
parazyd e64fda687b
Implement a flag and function for starting a job build. 2018-09-26 19:17:29 +02:00
1 changed files with 3 additions and 4 deletions

View File

@ -28,7 +28,7 @@ Usage
----- -----
``` ```
usage: sync_jobs.py [-h] [-a] [-d] [-n] [-r] jobname usage: sync_jobs.py [-h] [-a] [-d] [-n] jobname
positional arguments: positional arguments:
jobname jobname
@ -38,7 +38,6 @@ optional arguments:
-a, --add -a, --add
-d, --delete -d, --delete
-n, --dryrun -n, --dryrun
-r, --run
``` ```
The `jobname` argument should be in a specific format. It should contain The `jobname` argument should be in a specific format. It should contain
@ -65,5 +64,5 @@ would look something like the following:
sync_jobs.py -a parazyd@dyne.org-vm_amd64-1537977964 sync_jobs.py -a parazyd@dyne.org-vm_amd64-1537977964
``` ```
In case of removing or building an existing job, all of the above applies the In case of removing an existing job, all of the above applies the same
same way. You just have to use `-d` or `-r` instead of `-a`, respectively. way. You just have to use `-d` instead of `-a`.