@skilltap/core 0.5.3 → 0.5.4

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": "@skilltap/core",
3
- "version": "0.5.3",
3
+ "version": "0.5.4",
4
4
  "description": "Core library for skilltap — agent skill management",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -164,7 +164,7 @@ export async function downloadAndInstall(
164
164
  const buffer = await response.arrayBuffer();
165
165
  await Bun.write(tmpPath, buffer);
166
166
  await Bun.$`chmod +x ${tmpPath}`.quiet();
167
- await Bun.$`cp -a ${tmpPath} ${execPath} && rm -f ${tmpPath}`.quiet();
167
+ await Bun.$`mv -f ${tmpPath} ${execPath}`.quiet();
168
168
  } catch (e) {
169
169
  // Clean up temp file if possible
170
170
  Bun.$`rm -f ${tmpPath}`.quiet();