mirror of
https://github.com/NixOS/nix.git
synced 2025-11-26 04:00:59 +01:00
13 lines
199 B
Bash
Executable file
13 lines
199 B
Bash
Executable file
#! /bin/sh -e
|
|
|
|
svnbin=$1
|
|
repos=$2
|
|
|
|
if [ "$#" != 2 ] ; then
|
|
echo "Incorrect number of arguments"
|
|
exit 1;
|
|
fi
|
|
|
|
$svnbin info $repos | sed -n '/^Revision: /p' | sed 's/Revision: //'
|
|
|
|
# | tr -d "\12"
|