janfri / mini_exiftool

This library is a wrapper for the Exiftool command-line application (https://exiftool.org) written by Phil Harvey. It provides the full power of Exiftool to Ruby: reading and writing of EXIF-data, IPTC-data and XMP-data. Branch master is for actual development and branch compatibility-version is for compatibility with Ruby 1.8 and exiftool versions prior 7.65.
GNU Lesser General Public License v2.1
213 stars 52 forks source link

Fix before_install in .travis.yml #11

Closed sarahhodne closed 11 years ago

sarahhodne commented 11 years ago

The .travis.yml file was cding into the Image-ExifTool-9.27 dir, but never back out again. This adds another cd to $TRAVIS_BUILD_DIR, which is where the repository is checked out.

sarahhodne commented 11 years ago

And boom, your tests are passing again :smile:

janfri commented 11 years ago

My tests passing already (since 6da09382946e9fb98d2e39040022ca685418fa75). ;-) It was not a problem with the working dir but with the build in exiftool version.

janfri commented 11 years ago

Have inserted a "cd .." in the actual master's HEAD. So it's a little bit nicer / more correct. ;-)