Skip to content

Commit 19b2877

Browse files
committed
Suppress output under conda build
1 parent 7a3a587 commit 19b2877

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

dev/build/init-settings.sh

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,10 @@ then
1313
fi
1414

1515
cp ${THIS}/swift-t-settings.sh.template ${THIS}/swift-t-settings.sh
16-
echo "Created ${THIS}/swift-t-settings.sh"
17-
echo "You may edit swift-t-settings.sh before building."
16+
17+
if (( ${CONDA_BUILD:-0} == 0 ))
18+
then
19+
# This output is suppressed during a conda build
20+
echo "Created ${THIS}/swift-t-settings.sh"
21+
echo "You may edit swift-t-settings.sh before building."
22+
fi

0 commit comments

Comments
 (0)