diff --git a/src/storm/utility/storm-version.h b/src/storm/utility/storm-version.h index 24cf9a36f..cfe705304 100644 --- a/src/storm/utility/storm-version.h +++ b/src/storm/utility/storm-version.h @@ -24,7 +24,7 @@ namespace storm { /// How many commits passed since the tag was last set. const static unsigned commitsAhead; - /// 0 iff there no files were modified in the checkout, 1 otherwise. + /// 0 iff there no files were modified in the checkout, 1 otherwise. If none, no information about dirtyness is given. const static boost::optional dirty; /// The system which has compiled Storm. @@ -53,6 +53,8 @@ namespace storm { } if (!gitRevisionHash.empty()) { sstream << " build from revision " << gitRevisionHash; + } else { + sstream << " built from archive"; } if (dirty) { if (dirty.get()) {