Skip to content

Commit 10a1cba

Browse files
committed
publish.sh: Actually publish instead of echoing
1 parent ccf20c3 commit 10a1cba

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

publish.sh

+7-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ cd "$(dirname $0)"
66

77
for dir in ir traits parser opt analyze twiggy; do
88
cd "$dir"
9-
echo cargo publish
9+
10+
if [[ "$dir" == "opt" || "$dir" == "analyze" ]]; then
11+
cargo publish --no-verify
12+
else
13+
cargo publish
14+
fi
15+
1016
cd -
1117
done

0 commit comments

Comments
 (0)