Skip to content

Commit 84177f6

Browse files
committed
chore(operations): The --debug flag is a global flag for grease
Signed-off-by: Ben Johnson <bjohnson@binarylogic.com>
1 parent 68ba077 commit 84177f6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

scripts/release-github.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
title("Releasing artifacts to Github")
3939

40-
flags = ["--debug", "--assets 'target/artifacts/*'"]
40+
flags = ["--assets 'target/artifacts/*'"]
4141

4242
notes = templates.release_notes(release)
4343
notes = PostProcessors::LinkDefiner.define!(notes.clone, "", metadata.links)
@@ -48,7 +48,7 @@
4848
flags << "--pre"
4949
end
5050

51-
command = "grease create-release timberio/vector v#{VERSION} #{SHA1} #{flags.join(" ")}"
51+
command = "grease --debug create-release timberio/vector v#{VERSION} #{SHA1} #{flags.join(" ")}"
5252

5353
say(
5454
<<~EOF

scripts/release-homebrew.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ package_sha256=$(curl -s $package_url | sha256sum | cut -d " " -f 1)
2323
new_content=$(cat Formula/vector.rb | \
2424
sed "s|url \".*\"|url \"$package_url\"|" | \
2525
sed "s|sha256 \".*\"|sha256 \"$package_sha256\"|" | \
26-
sed "s|version \".*\"|version \"$VERSION\"|"
26+
sed "s|version \".*\"|version \"$VERSION\"|")
2727

2828
echo "$new_content" > Formula/vector.rb
2929

0 commit comments

Comments
 (0)