From 32826f3c989e63f53510a9bdccd1855a9ae00636 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Mon, 4 Feb 2013 17:38:32 +0100 Subject: o Adding a file resolver. o Getting the IT to work on windows. --- libexec/app-resolver-file | 94 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100755 libexec/app-resolver-file (limited to 'libexec/app-resolver-file') diff --git a/libexec/app-resolver-file b/libexec/app-resolver-file new file mode 100755 index 0000000..6282b83 --- /dev/null +++ b/libexec/app-resolver-file @@ -0,0 +1,94 @@ +#!/bin/bash + +set -e +set -u + +APPSH_HOME=$(cd $(dirname "$0")/.. && pwd) + +. $APPSH_HOME/lib/common +# HEADER END + +usage_text() { + echo "usage: $usage_app init " + echo "usage: $usage_app resolve-version" + echo "usage: $usage_app download-version -v -f " +} + +init() { + while getopts "r:" opt + do + case $opt in + r) + app-conf set maven.repo "$OPTARG" + shift 2 + OPTIND=1 + ;; + *) + usage "Invalid option: $OPTARG" + ;; + esac + done + + local file=${1-} + + if [[ ! -r "$file" ]] + then + fatal "Can't read file: $file" + fi + + app-conf set file.path "$file" +} + +resolve_version() { + path=$(app-conf get file.path) + + local s=$(stat -c %Z $path) + + app-conf set app.version "$s" +} + +download_version() { + target="" + while getopts "v:f:" opt + do + case $opt in + v) + # Ignored + ;; + f) + target="$OPTARG" + ;; + *) + usage "Invalid option: $OPTARG" + ;; + esac + done + + if [[ $target == "" ]] + then + usage + fi + + path=$(app-conf get file.path) + + ln -s "$path" "$target" +} + +command="$1"; shift + +case "$command" in + init) + init "$@" + ;; + resolve-version) + resolve_version + ;; + download-version) + download_version "$@" + ;; + *) + usage + ;; +esac + +exit 0 -- cgit v1.2.3