mirror of
https://github.com/YunoHost/apps.git
synced 2024-09-03 20:06:07 +02:00
Add header on python script to permit launch it with './'.
This commit is contained in:
parent
9afcd5e449
commit
021002cc08
2 changed files with 3 additions and 1 deletions
|
@ -69,7 +69,7 @@ your app from one of the 2 json files.
|
||||||
Usage:
|
Usage:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
python ./add_or_update.py [community.json OR official.json] [github url [github url [github url ...]]]
|
./add_or_update.py [community.json OR official.json] [github url [github url [github url ...]]]
|
||||||
```
|
```
|
||||||
|
|
||||||
#### More information on [yunohost.org/packaging_apps](https://yunohost.org/packaging_apps)
|
#### More information on [yunohost.org/packaging_apps](https://yunohost.org/packaging_apps)
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#!/usr/bin/env python2
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import json
|
import json
|
||||||
|
|
Loading…
Add table
Reference in a new issue