agconf 0.3.3 → 0.3.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/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -904,7 +904,7 @@ function hashContent(content) {
|
|
|
904
904
|
return `sha256:${hash.slice(0, 12)}`;
|
|
905
905
|
}
|
|
906
906
|
function getCliVersion() {
|
|
907
|
-
return true ? "0.3.
|
|
907
|
+
return true ? "0.3.4" : "0.0.0";
|
|
908
908
|
}
|
|
909
909
|
async function checkCliVersionMismatch(targetDir) {
|
|
910
910
|
const result = await readLockfile(targetDir);
|
|
@@ -2938,7 +2938,9 @@ async function performSync(options) {
|
|
|
2938
2938
|
const workflowSpinner = logger.spinner("Syncing workflow files...");
|
|
2939
2939
|
workflowSpinner.start();
|
|
2940
2940
|
const workflowRef = resolvedVersion.isRelease && resolvedVersion.version ? formatTag(resolvedVersion.version) : resolvedVersion.ref;
|
|
2941
|
-
workflowResult = await syncWorkflows(targetDir, workflowRef, options.sourceRepo
|
|
2941
|
+
workflowResult = await syncWorkflows(targetDir, workflowRef, options.sourceRepo, {
|
|
2942
|
+
markerPrefix: resolvedSource.markerPrefix
|
|
2943
|
+
});
|
|
2942
2944
|
workflowSpinner.stop();
|
|
2943
2945
|
}
|
|
2944
2946
|
const hookResult = await installPreCommitHook(targetDir);
|