Skip to content

Commit

Permalink
Include untracked files for clean branch (#3442)
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenButtolph authored Oct 3, 2024
1 parent 0e96538 commit 005c787
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/check-clean-branch.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/bin/bash
# Exits if any uncommitted changes are found.
#!/usr/bin/env bash

set -o errexit
set -o nounset
set -o pipefail
set -euo pipefail

git add --all
git update-index --really-refresh >> /dev/null

# Exits if any uncommitted changes are found.
git diff-index --quiet HEAD
1 change: 0 additions & 1 deletion scripts/mocks.mockgen.source.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,3 @@ vms/platformvm/state/state.go=Chain=MockState=vms/platformvm/state/mock_state.go
vms/platformvm/state/state.go=State=MockChain=vms/platformvm/state/mock_chain.go
vms/platformvm/txs/unsigned_tx.go==UnsignedTx=vms/platformvm/txs/txsmock/unsigned_tx.go
vms/proposervm/block.go=Block=MockPostForkBlock=vms/proposervm/mock_post_fork_block.go
x/merkledb/db.go=ChangeProofer,RangeProofer,Clearer,Prefetcher=MockMerkleDB=x/merkledb/mock_db.go

0 comments on commit 005c787

Please sign in to comment.