mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 05:01:07 +00:00
Initial import from qqq-dev-tools standalone repo
This commit is contained in:
14
qqq-dev-tools/bin/update-all-qqq-deps.sh
Executable file
14
qqq-dev-tools/bin/update-all-qqq-deps.sh
Executable file
@ -0,0 +1,14 @@
|
||||
#!/bin/zsh
|
||||
|
||||
############################################################################
|
||||
## update-all-qqq-deps.sh
|
||||
## Set the version of all qqq deps in a given pom to the latest snapshot.
|
||||
############################################################################
|
||||
|
||||
CURRENT_VERSION="$(cat $QQQ_DEV_TOOLS_DIR/CURRENT-SNAPSHOT-VERSION)"
|
||||
MODULE_LIST_FILE=$QQQ_DEV_TOOLS_DIR/MODULE_LIST
|
||||
|
||||
for module in $(cat $MODULE_LIST_FILE); do
|
||||
version=$(get-latest-snapshot.sh $module $CURRENT_VERSION)
|
||||
update-dep.sh $module $version
|
||||
done
|
Reference in New Issue
Block a user