https://github.com/Kitware/CMake
Raw File
Tip revision: 64130a7e793483e24c1d68bdd234f81d5edb2d51 authored by Brad King on 24 March 2016, 13:56:42 UTC
CMake 3.5.1
Tip revision: 64130a7
update-kwiml.bash
#!/usr/bin/env bash

set -e
set -x
shopt -s dotglob

readonly name="KWIML"
readonly ownership="KWIML Upstream <kwrobot@kitware.com>"
readonly subtree="Utilities/KWIML"
readonly repo="https://github.com/Kitware/KWIML.git"
readonly tag="master"
readonly shortlog=true
readonly paths="
"

extract_source () {
    git_archive
}

. "${BASH_SOURCE%/*}/update-third-party.bash"
back to top