Fix bug: tpm shared path is created before sync
This commit is contained in:
parent
518777cfbd
commit
0e04c1f34f
2 changed files with 7 additions and 0 deletions
|
@ -3,6 +3,8 @@
|
||||||
### master
|
### master
|
||||||
- run all *.tmux plugin files as executables
|
- run all *.tmux plugin files as executables
|
||||||
- fix all redirects to /dev/null
|
- fix all redirects to /dev/null
|
||||||
|
- fix bug: TPM shared path is created before sync (cloning plugins from github
|
||||||
|
is done)
|
||||||
|
|
||||||
### v0.0.1, 2014-05-21
|
### v0.0.1, 2014-05-21
|
||||||
- get TPM up and running
|
- get TPM up and running
|
||||||
|
|
|
@ -73,6 +73,10 @@ sync_plugins() {
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ensure_tpm_path_exists() {
|
||||||
|
mkdir -p $SHARED_TPM_PATH
|
||||||
|
}
|
||||||
|
|
||||||
reload_tmux_environment() {
|
reload_tmux_environment() {
|
||||||
tmux source-file ~/.tmux.conf >/dev/null 2>&1
|
tmux source-file ~/.tmux.conf >/dev/null 2>&1
|
||||||
}
|
}
|
||||||
|
@ -80,6 +84,7 @@ reload_tmux_environment() {
|
||||||
main() {
|
main() {
|
||||||
reload_tmux_environment
|
reload_tmux_environment
|
||||||
shared_set_tpm_path_constant
|
shared_set_tpm_path_constant
|
||||||
|
ensure_tpm_path_exists
|
||||||
sync_plugins
|
sync_plugins
|
||||||
reload_tmux_environment
|
reload_tmux_environment
|
||||||
end_message
|
end_message
|
||||||
|
|
Loading…
Reference in a new issue