@biffo/cli 0.59.0 → 0.59.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/core.version +1 -1
- package/dist/index.js +4 -0
- package/package.json +1 -1
package/core.version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.59.
|
|
1
|
+
0.59.1
|
package/dist/index.js
CHANGED
|
@@ -228,6 +228,10 @@ function writeInstanceCoreVersion(cwd, version) {
|
|
|
228
228
|
writeFileSync(join2(cwd, INSTANCE_CORE_FILE), serializeInstanceCoreVersion(version));
|
|
229
229
|
}
|
|
230
230
|
function latestCoreVersionFromTags(repo, git = defaultTagRunner) {
|
|
231
|
+
try {
|
|
232
|
+
git(["-C", repo, "fetch", "--tags", "--quiet"]);
|
|
233
|
+
} catch {
|
|
234
|
+
}
|
|
231
235
|
let out;
|
|
232
236
|
try {
|
|
233
237
|
out = git(["-C", repo, "tag", "--list", "core-v*"]);
|