Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus committed Dec 19, 2018
1 parent 4007075 commit 40fd1eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,9 @@ environment:
$dirty = git -C $repo status -z -uno --ignore-submodules=all
if ($dirty) { throw "Work tree $repo dirty." }
# Ask git for a list of checked-out files and their hashes, metadata.
(git -C $_ ls-files -z --stage --eol --full-name -split "\0") |
(git -C $repo ls-files -z --stage --eol --full-name) -split "\0" |
# Filter out non-files, keep only those with mode 100644/100755.
where { $_ -match "^100" }
where { $_ -match "^100" } |
foreach {
# The repo root dir plus the entire "mode hash attr filename" line
# serves as the cache key.
Expand Down

0 comments on commit 40fd1eb

Please sign in to comment.