agent-assh 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-assh",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "SSH workflow helper for LLM agents",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -91,11 +91,6 @@ function ensureReleaseGitState(version = pkg.version) {
91
91
  if (!hasGitRef(`refs/tags/${tag}`)) {
92
92
  git(['tag', tag, 'HEAD']);
93
93
  addedTag = true;
94
- } else {
95
- const pointsAtHead = git(['tag', '--points-at', 'HEAD']).split(/\r?\n/).includes(tag);
96
- if (!pointsAtHead) {
97
- throw new Error(`tag ${tag} exists but does not point at HEAD`);
98
- }
99
94
  }
100
95
 
101
96
  return cleanup;