Skip to content

Commit

Permalink
Add scripts/publish.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Jun 10, 2024
1 parent a5db685 commit a88bd95
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions scripts/publish.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#! /bin/bash

# set -x
set -euo pipefail

if [[ $# -ne 0 ]]; then
echo "$0: expect no arguments" >&2
exit 1
fi

for X in afl cargo-afl; do
pushd "$X"
cargo publish
popd
done

0 comments on commit a88bd95

Please sign in to comment.