We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af51045 commit dffd620Copy full SHA for dffd620
hack/add-members.sh
@@ -18,8 +18,6 @@ set -euo pipefail
18
19
SCRIPT_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
20
21
-go install "$SCRIPT_ROOT"/cmd/korg
22
-
23
DRY_RUN=${DRY_RUN:-false}
24
25
if [[ -z ${WHO:-} ]]; then
@@ -36,8 +34,8 @@ do
36
34
echo "Adding $username to $REPOS"
37
35
if [ "$DRY_RUN" = true ]; then
38
echo "Running in dry run mode."
39
- korg add "$username" --org "$REPOS"
+ go run ./cmd/korg add "$username" --org "$REPOS"
40
else
41
- korg add "$username" --org "$REPOS" --confirm
+ go run ./cmd/korg add "$username" --org "$REPOS" --confirm
42
fi
43
done
0 commit comments