mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-03-02 20:59:49 +00:00
dotbot: fix glob error in python < v3.5
This commit is contained in:
26
install-without-plugins
Executable file
26
install-without-plugins
Executable file
@@ -0,0 +1,26 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
CONFIG="install.conf.yaml"
|
||||||
|
DOTBOT_DIR="dotbot"
|
||||||
|
|
||||||
|
DOTBOT_BIN="bin/dotbot"
|
||||||
|
BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||||
|
|
||||||
|
cd "$BASEDIR"
|
||||||
|
git submodule sync --quiet --recursive
|
||||||
|
git submodule update --init --recursive
|
||||||
|
|
||||||
|
"${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" \
|
||||||
|
-d "${BASEDIR}" \
|
||||||
|
-c "${CONFIG}" \
|
||||||
|
"${@}"
|
||||||
|
|
||||||
|
# --plugin-dir=dotbot-plugins/dotbot-brew \
|
||||||
|
# --plugin-dir=dotbot-plugins/dotbot-gh-extension \
|
||||||
|
# --plugin-dir=dotbot-plugins/dotbot-golang \
|
||||||
|
# --plugin-dir=dotbot-plugins/dotbot-if \
|
||||||
|
# --plugin-dir=dotbot-plugins/dotbot-ifplatform \
|
||||||
|
# -p dotbot-plugins/dotbot-if/if.py \
|
||||||
|
|
||||||
@@ -23,23 +23,22 @@
|
|||||||
mode: 700
|
mode: 700
|
||||||
~/Code:
|
~/Code:
|
||||||
|
|
||||||
|
|
||||||
- link:
|
- link:
|
||||||
~/.config/:
|
~/.config/:
|
||||||
glob: true
|
glob: true
|
||||||
path: config/**
|
path: config/*
|
||||||
~/.local/bin/:
|
~/.local/bin/:
|
||||||
glob: true
|
glob: true
|
||||||
path: local/bin/**
|
path: local/bin/*
|
||||||
~/.ssh/:
|
~/.ssh/:
|
||||||
force: true
|
force: true
|
||||||
glob: true
|
glob: true
|
||||||
mode: 600
|
mode: 600
|
||||||
path: ssh/**
|
path: ssh/*
|
||||||
~/:
|
~/:
|
||||||
force: true
|
force: true
|
||||||
glob: true
|
glob: true
|
||||||
path: base/**
|
path: base/*
|
||||||
prefix: "."
|
prefix: "."
|
||||||
|
|
||||||
- shell:
|
- shell:
|
||||||
|
|||||||
Reference in New Issue
Block a user