Skip to content

Commit 1830532

Browse files
author
Larry Gordon
committed
Merge branch 'release/1.2.0'
2 parents 1af56e4 + 0746346 commit 1830532

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "alf",
3-
"version": "1.1.1",
3+
"version": "1.2.0",
44
"engines": {
55
"node": ">= 0.10.0"
66
},

plugins/git/init.zsh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,9 @@ function _git-branch-delete() {
138138
done
139139
if [[ -n $has_option ]]; then
140140
shift
141-
git branch | egrep "^ release" | xargs git branch -D
141+
for branch in $(git branch | egrep "^[ ]+$@" | sed -e 's/ //g' | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"); do
142+
git branch -D $branch
143+
done
142144
else
143145
git branch -D $@
144146
fi

tools/post-update.zsh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ _alf-fn-symlink-config() {
2828
ln -sf "$ALF_HOST/config" "$ALF_CONFIG"
2929
fi
3030
# Symlink our repos folder to our host
31-
if [[ ! -d "$ADOTDIR" ]] || [[ -z $(readlink -f "$ADOTDIR" | grep "/cygdrive/z") ]]; then
32-
ln -sf "$ALF_HOST/antigen" "$ADOTDIR"
33-
fi
31+
# if [[ ! -d "$ADOTDIR" ]] || [[ -z $(readlink -f "$ADOTDIR" | grep "/cygdrive/z") ]]; then
32+
# ln -sf "$ALF_HOST/antigen" "$ADOTDIR"
33+
# fi
3434
fi
3535
}
3636

0 commit comments

Comments
 (0)