1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-26 04:00:59 +01:00
nix/scripts/nix-restorerevision.sh.in
Wouter den Breejen ca5fc7c582 major update
2007-07-08 19:02:08 +00:00

13 lines
155 B
Bash
Executable file

#! /bin/sh -e
svnbin=$1
torevision=$2
repos=$3
if [ "$#" != 3 ] ; then
echo "Incorrect number of arguments"
exit 1;
fi
$svnbin merge -r HEAD:$2 $3