Changes for README.md

This commit is contained in:
Martin Valba 2023-10-23 22:28:20 +03:00
parent a339205b5b
commit 0060990848

View File

@ -5,5 +5,35 @@
* As we have many different repos then updating every repo scriptlet is annoying
* This here will try to make everything as simple as possible by adding base functions here so the repo scriptlets will just call the function we have here to do the dirty work.
### Source?
* https://git.martinvlba.eu/Evolinx/repo_helper
### Usage
* scripts example
```
$ cat $P_ROOT/repo/evolinx/core/repo_update
---
#!/bin/bash
###
# Repo updater
###
# Import shell sub module
export whatami=core
export target_arch=x86_64
. ../repo_helper/shell/base_functions.sh
# Main
run_noraml_update
cd ../
---
```
* Having core, extra, extra32 and other repos same script without this module will make editing each individual update script a hell
* So this is why this project is made ( makes life a bit easier )