aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/patches_utils.sh
blob: 1792a4ce5a64c5133334218c5e2a88656076b66b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash
###############################
# exposes library functions to modify properties in a property 
###############################

set -euo pipefail

PATCHES_HOME=scripts/patches

# $1: name(s) of patches to call, separated by a colon
# all other arguments are passed as is to the patches
function call_patches() {
  local PATCHES=$1
  local ARGS=${@:2}
  local savedIFS=$IFS
  
  IFS=','
  for PATCH in $PATCHES; do
    #echo "calling $PATCHES_HOME/$PATCH.sh $ARGS"
    echo ""
    echo "******** $PATCH *******"
    $PATCHES_HOME/$PATCH.sh $ARGS
  done
  IFS=$savedIFS

  echo ""
}