File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 187
187
# Loop through every vendored package
188
188
for PACKAGE in $( go list -m -json all | jq -r .Path | sort -f) ; do
189
189
if [[ -e " staging/src/${PACKAGE} " ]]; then
190
- echo " ${PACKAGE} is a staging package, skipping" > /dev/stderr
190
+ echo " ${PACKAGE} is a staging package, skipping" >&2
191
191
continue
192
192
fi
193
193
if [[ ! -e " ${DEPS_DIR} /${PACKAGE} " ]]; then
194
- echo " ${PACKAGE} doesn't exist in ${DEPS_DIR} , skipping" > /dev/stderr
194
+ echo " ${PACKAGE} doesn't exist in ${DEPS_DIR} , skipping" >&2
195
195
continue
196
196
fi
197
197
echo " ${PACKAGE} "
@@ -214,7 +214,7 @@ for PACKAGE in $(go list -m -json all | jq -r .Path | sort -f); do
214
214
file=" ${CONTENT[${PACKAGE}-COPYING]-} "
215
215
fi
216
216
if [[ -z " ${file} " ]]; then
217
- cat > /dev/stderr << __EOF__
217
+ cat >&2 << __EOF__
218
218
No license could be found for ${PACKAGE} - aborting.
219
219
220
220
Options:
You can’t perform that action at this time.
0 commit comments