This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Given a pristine file's SHA1, which is missing from the PRISTINE table but | |
| # referenced from the NODES table, download it into the pristine store and | |
| # insert a PRISTINE table row. | |
| # by Julian Foad from "Pristine text missing - cleanup doesn't work" org.apache.subversion.dev thread | |
| SHA1="$1" | |
| set -e |