mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-03-03 01:40:17 +00:00
add gitdeploy
This commit is contained in:
42
gitdeploy/install.sh
Normal file
42
gitdeploy/install.sh
Normal file
@@ -0,0 +1,42 @@
|
||||
#!/bin/bash
|
||||
|
||||
function __init_gitdeploy() {
|
||||
set -e
|
||||
set -u
|
||||
|
||||
#####################
|
||||
# Install gitdeploy #
|
||||
#####################
|
||||
|
||||
# Every package should define these 6 variables
|
||||
pkg_cmd_name="gitdeploy"
|
||||
|
||||
pkg_dst_cmd="$HOME/.local/bin/gitdeploy"
|
||||
pkg_dst="$pkg_dst_cmd"
|
||||
|
||||
pkg_src_cmd="$HOME/.local/opt/gitdeploy-v$WEBI_VERSION/bin/gitdeploy"
|
||||
pkg_src_dir="$HOME/.local/opt/gitdeploy-v$WEBI_VERSION"
|
||||
pkg_src="$pkg_src_cmd"
|
||||
|
||||
pkg_install() {
|
||||
# $HOME/.local/opt/gitdeploy-v0.7.1/bin
|
||||
mkdir -p "$pkg_src_bin"
|
||||
|
||||
# mv ./gitdeploy* "$HOME/.local/opt/gitdeploy-v0.7.1/bin/gitdeploy"
|
||||
mv ./"$pkg_cmd_name"* "$pkg_src_cmd"
|
||||
|
||||
# chmod a+x "$HOME/.local/opt/gitdeploy-v0.7.1/bin/gitdeploy"
|
||||
chmod a+x "$pkg_src_cmd"
|
||||
}
|
||||
|
||||
pkg_get_current_version() {
|
||||
# 'gitdeploy version' has output in this format:
|
||||
# gitdeploy v0.7.1 (be68fec) 2020-10-20T22:27:47Z)
|
||||
# This trims it down to just the version number:
|
||||
# 0.7.1
|
||||
echo "$(gitdeploy --version 2>/dev/null | head -n 1 | cut -d' ' -f2 | sed 's:^v::')"
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
__init_gitdeploy
|
||||
Reference in New Issue
Block a user