Skip to content
This repository has been archived by the owner on Dec 31, 2021. It is now read-only.

Fix version signature computation #32

Open
wants to merge 1 commit into
base: experimental/kotlin
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion utils.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ static String rawComputeVersionSignature(String version) {
def versionBase = version.replace("-SNAPSHOT", "")
// Determine the current git commit
// Determine if there are uncommitted changes
def prog = "git status --porcelain=1".execute()
def prog = "git status --porcelain".execute()
def isClean = prog.text.allWhitespace
assert prog.waitFor() == 0, "Failed to execute git status!"
/*
Expand Down