Go to file
2023-10-24 02:20:48 +03:00
shell Make sure to work with finished db as needed 2023-10-24 02:20:48 +03:00
LICENSE.md Create LICENSE.md 2023-10-23 20:05:46 +03:00
README.md Changes for README.md 2023-10-23 22:28:20 +03:00

NOTICE

About

  • This is helper scripts for repo updating
  • 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.

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 )