abtars 0.1.0-alpha.17 → 0.1.0-alpha.18

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.
@@ -1735,10 +1735,11 @@ Update complete: ${staged.version}
1735
1735
  const destConfig = join9(paths.home, "config");
1736
1736
  if (existsSync7(releaseConfig)) {
1737
1737
  for (const f of readdirSync3(releaseConfig)) {
1738
- if (!f.endsWith(".example")) continue;
1739
- const target = join9(destConfig, f.replace(".example", ""));
1740
- if (!existsSync7(target)) {
1741
- cpSync(join9(releaseConfig, f), target);
1738
+ const src = join9(releaseConfig, f);
1739
+ if (f.endsWith(".example")) {
1740
+ cpSync(src, join9(destConfig, f));
1741
+ const target = join9(destConfig, f.replace(".example", ""));
1742
+ if (!existsSync7(target)) cpSync(src, target);
1742
1743
  }
1743
1744
  }
1744
1745
  const defaultTransport = join9(releaseConfig, "transport.default.json");