skills 1.5.0 → 1.5.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/dist/cli.mjs +3 -2
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -402,7 +402,8 @@ async function cloneRepo(url, ref) {
|
|
|
402
402
|
timeout: { block: CLONE_TIMEOUT_MS },
|
|
403
403
|
env: {
|
|
404
404
|
...process.env,
|
|
405
|
-
GIT_TERMINAL_PROMPT: "0"
|
|
405
|
+
GIT_TERMINAL_PROMPT: "0",
|
|
406
|
+
GIT_LFS_SKIP_SMUDGE: "1"
|
|
406
407
|
}
|
|
407
408
|
});
|
|
408
409
|
const cloneOptions = ref ? [
|
|
@@ -2164,7 +2165,7 @@ async function tryBlobInstall(ownerRepo, options = {}) {
|
|
|
2164
2165
|
tree
|
|
2165
2166
|
};
|
|
2166
2167
|
}
|
|
2167
|
-
var version$1 = "1.5.
|
|
2168
|
+
var version$1 = "1.5.1";
|
|
2168
2169
|
const isCancelled$1 = (value) => typeof value === "symbol";
|
|
2169
2170
|
async function isSourcePrivate(source) {
|
|
2170
2171
|
const ownerRepo = parseOwnerRepo(source);
|