Details
-
Task
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
export VC_REV=`git branch -v | awk '/^*/
{printf("%s@%s\n", $2, $3); }'`
- Out canonical repo is @GitHub – hence hardcoding
export VC_URL="git://github.com/yahoo/oozie.git"
Should be replaced by
export VC_REV=`svn info | grep "Revision" | awk '
{print $2}'`export VC_URL=`svn info | grep "URL" | awk '{print $2}
'`