Add blind-update.sh
This commit is contained in:
parent
29bb2d6003
commit
148a8b110c
3 changed files with 46 additions and 0 deletions
16
distillery/blind-update-all.sh
Normal file
16
distillery/blind-update-all.sh
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
# read the lib/shared.sh and read the slug argument.
|
||||
DISABLE_LOG=1
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
||||
cd "$DIR"
|
||||
source "$DIR/lib/lib.sh"
|
||||
DISABLE_LOG=0
|
||||
|
||||
# update all the instances
|
||||
for slug in $(sql_bookkeep_list_updateable); do
|
||||
log_info "=> /bin/bash $DIR/blind-update.sh '$slug'"
|
||||
/bin/bash "$DIR/blind-update.sh" "$slug";
|
||||
done
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue