Warning! We have ended support for Kiln Harmony. We will continue to support Mercurial and Git repositories individually, but not both at the same time.

Please convert this repository to either a Mercurial or Git repository. To do so, have an Admin go to Settings, then click "Convert Repository to Git-only or Mercurial-only", and follow the instructions there.

Alternatively, you can see a list of all Harmony repos, and convert many at once here.

If you have any questions or concerns, please contact us at customer-service@fogcreek.com.

Mercurial
Repositories » pharo-vm Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in tip and develop

ensure the /build directory exists when creating the versionInfo.h

Changeset 72fd9e926280

Parent c2ba0d396bef

by Profile picture of User 2Camillo Bruni <camillobruni@gmail.com>

Changes to one file · Browse files at 72fd9e926280 Showing diff from parent c2ba0d396bef Diff from another changeset...

 
14
15
16
 
 
17
18
19
 
14
15
16
17
18
19
20
21
@@ -14,6 +14,8 @@
 URL=`git config --get remote.origin.url`  COMMIT=`git show HEAD --pretty="Commit: %H Date: %ci By: %cn <%cE>" | head -n 1`   +mkdir `dirname $VERSION_INFO` +  echo -n "#define REVISION_STRING \"$URL $COMMIT " > $VERSION_INFO  test -n "${BUILD_NUMBER}" && echo -n "Jenkins build #${BUILD_NUMBER}" >> $VERSION_INFO || echo  echo "\"" >> $VERSION_INFO