We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47857c6 commit 99e0da0Copy full SHA for 99e0da0
main.sh
@@ -27,13 +27,15 @@ install_features() {
27
if [[ -n "${FEATURES}" ]]; then
28
echo -e "${PURPLE}Installing features: ${FEATURES}${RESET}"
29
30
+# ARGS=$(echo "$FEATURES" | awk 'BEGIN{ORS=" "}{for (i=1;i<=NF;i++){print "--feature",$i}}')
31
ARGS=()
32
for feature in $(echo $FEATURES); do
- ARGS+=("-f" "$feature")
33
+ ARGS+=("-f $feature")
34
done
35
+ echo ${ARGS[@]}
36
- echo "${1}" -v self dep sync "${ARGS[@]}"
- "${1}" -v self dep sync "${ARGS[@]}"
37
+ echo "${1} -v self dep sync ${ARGS[@]}"
38
+ "${1}" -v self dep sync ${ARGS[@]}
39
fi
40
}
41
0 commit comments