From 0a2d1d66daf22642e209eafee473be389a1cd366 Mon Sep 17 00:00:00 2001 From: Darin Kelkhoff Date: Mon, 6 Mar 2023 09:51:15 -0600 Subject: [PATCH] Don't reset qqq-frontend-material-dashboard to SNAPSHOT --- qqq-dev-tools/bin/reset-snapshot-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qqq-dev-tools/bin/reset-snapshot-deps.sh b/qqq-dev-tools/bin/reset-snapshot-deps.sh index b0d96f46..421b34d4 100755 --- a/qqq-dev-tools/bin/reset-snapshot-deps.sh +++ b/qqq-dev-tools/bin/reset-snapshot-deps.sh @@ -13,7 +13,7 @@ fi CURRENT_VERSION="$(cat $QQQ_DEV_TOOLS_DIR/CURRENT-SNAPSHOT-VERSION)" MODULE_LIST_FILE=$QQQ_DEV_TOOLS_DIR/MODULE_LIST -for artifact in $(cat $MODULE_LIST_FILE); do +for artifact in $(cat $MODULE_LIST_FILE | grep -v qqq-frontend-material-dashboard); do update-dep.sh $artifact ${CURRENT_VERSION}-SNAPSHOT -q done