summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2015-07-28 18:37:18 +0200
committerMatthias Beyer <mail@beyermatthias.de>2015-07-28 18:47:05 +0200
commit63c7df1e39ca4fbd0a68bd1bc4c9e4d304150885 (patch)
tree4436f78897d6b370b871f886560758c634167083
parent9d91b7df35de760b509f1eab6f7cd61207088ef3 (diff)
switch command: Dont do annotated tagging
-rwxr-xr-xnix-script-switch.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/nix-script-switch.sh b/nix-script-switch.sh
index 8051e24..37ff29e 100755
--- a/nix-script-switch.sh
+++ b/nix-script-switch.sh
@@ -132,7 +132,7 @@ then
fi
fi
- __git "$WD" tag -a "$TAG_NAME"
+ __git "$WD" tag "$TAG_NAME"
if [[ ! -z "$NIXPKGS" ]]
then
d='n2' href='#n2'>2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131