We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ebdfde commit 02c2b6aCopy full SHA for 02c2b6a
melting-pot.sh
@@ -124,19 +124,19 @@ parseArguments() {
124
shift
125
;;
126
-c|--changes)
127
- changes="$2"
+ test "$changes" && changes="$changes,$2" || changes="$2"
128
129
130
-i|--includes)
131
- includes="$2"
+ test "$includes" && includes="$includes,$2" || includes="$2"
132
133
134
-e|--excludes)
135
- excludes="$2"
+ test "$excludes" && excludes="$excludes,$2" || excludes="$2"
136
137
138
-r|--remoteRepos)
139
- remoteRepos="$2"
+ test "$remoteRepos" && remoteRepos="$remoteRepos,$2" || remoteRepos="$2"
140
141
142
-l|--localRepo)
0 commit comments