Skip to content

Commit 90261b8

Browse files
committed
Fix git pull origin master invocation in release instructions
Fix a small bug in the release instructions in that `git pull` doesn't work and should be `git pull origin master` instead.
1 parent 3cecc5c commit 90261b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ $ open coverage/index.html
7272
3. Build and push each gem, then tag the release and push that:
7373

7474
```shell
75-
git pull
75+
git pull origin master
7676
7777
gem push riverqueue-${"${VERSION}"/v/}.gem
7878
pushd drivers/riverqueue-activerecord && gem push riverqueue-activerecord-${"${VERSION}"/v/}.gem && popd

0 commit comments

Comments
 (0)